athena/Athena.pro

41 lines
729 B
Prolog
Raw Normal View History

2014-12-29 05:08:53 +00:00
CONFIG += staticlib c++11
2014-04-20 09:14:15 +00:00
TEMPLATE= lib
DESTDIR = ./lib
2015-01-25 04:29:08 +00:00
INCLUDEPATH += $$PWD/include
2014-04-20 09:14:15 +00:00
# Uncomment this if you wish to use Qt with libAthena
#DEFINES += ATHENA_USE_QT
contains(DEFINES, ATHENA_USE_QT){
2014-04-20 11:43:27 +00:00
QT += qt core
} else {
QT =
2014-04-20 09:14:15 +00:00
}
2015-01-25 03:40:35 +00:00
CONFIG(debug, debug|release): {
2014-04-20 09:14:15 +00:00
DEFINES += DEBUG
TARGET=Athena-d
# We don't want the objects,
# in the project directory, so tell qmake
# where to put them
OBJECTS_DIR = obj/debug
}
2015-01-25 03:40:35 +00:00
CONFIG(release, release|debug): {
2014-04-20 09:14:15 +00:00
DEFINES -= DEBUG
TARGET=Athena
# We don't want the objects,
# in the project directory, so tell qmake
# where to put them
OBJECTS_DIR = obj/release
}
2015-01-25 04:29:08 +00:00
ATHENA_PRO=true
2015-01-25 03:40:35 +00:00
include(Athena.pri)
2014-04-20 09:14:15 +00:00
OTHER_FILES += \
.travis.yml