mirror of https://github.com/libAthena/athena.git
* Add Git Ignore
* Changed where objects are placed (to prevent mishaps during build)
This commit is contained in:
parent
8ad0c00613
commit
3e7dfddc5c
|
@ -0,0 +1,18 @@
|
|||
# File types
|
||||
**/*.o
|
||||
**/*.a
|
||||
**/*.zip
|
||||
**/*.html
|
||||
**/*.tar
|
||||
**/*.gz
|
||||
**/*.bz2
|
||||
**/*.so
|
||||
**/*.dll
|
||||
**/*.dylib
|
||||
**/*.user
|
||||
**/.directory
|
||||
# Directories
|
||||
**/doc
|
||||
**/obj
|
||||
**/Makefile
|
||||
|
10
libzelda.pro
10
libzelda.pro
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue