* Add Git Ignore

* Changed where objects are placed (to prevent mishaps during build)
This commit is contained in:
Antidote 2013-09-14 16:08:53 -07:00
parent 8ad0c00613
commit 3e7dfddc5c
2 changed files with 27 additions and 1 deletions

18
.gitignore vendored Normal file
View File

@ -0,0 +1,18 @@
# File types
**/*.o
**/*.a
**/*.zip
**/*.html
**/*.tar
**/*.gz
**/*.bz2
**/*.so
**/*.dll
**/*.dylib
**/*.user
**/.directory
# Directories
**/doc
**/obj
**/Makefile

View File

@ -1,15 +1,23 @@
CONFIG += staticlib
TEMPLATE=lib
TEMPLATE= lib
DESTDIR = ./lib
CONFIG(debug, debug|release){
DEFINES += DEBUG
TARGET=zelda-d
# We don't want the objects,
# in the project directory, so tell qmake
# where to put them
OBJECTS_DIR = obj/debug
}
CONFIG(release, release|debug){
DEFINES -= DEBUG
unix:TARGET=zelda
# We don't want the objects,
# in the project directory, so tell qmake
# where to put them
OBJECTS_DIR = obj/release
}
QMAKE_CXXFLAGS = -std=c++0x