1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
TEMPLATE = app
include( ../config.pro )
INCLUDEPATH += ..
LIBS += -L..
unix:LIBS += -lAttalServer
unix:LIBS += -lAttalCommon
unix:LIBS += -lAttalAi
win32:LIBS += -lAttalServer9
win32:LIBS += -lAttalCommon9
win32:LIBS += -lAttalAi2
win32:DEFINE += WIN32
win32 {
contains( CONFIG, debug ) {
CONFIG += console
}
}
SOURCES += displayScenarii.cpp
SOURCES += serverWidgets.cpp
SOURCES += serverInterface.cpp
SOURCES += main.cpp
HEADERS += displayScenarii.h
HEADERS += serverWidgets.h
HEADERS += serverInterface.h
TRANSLATIONS += ../i18n/de/attal_server_de.ts
TRANSLATIONS += ../i18n/fr/attal_server_fr.ts
TRANSLATIONS += ../i18n/ru/attal_server_ru.ts
TRANSLATIONS += ../i18n/it/attal_server_it.ts
DESTDIR = ..
OBJECTS_DIR=./obj
MOC_DIR=./moc
TARGET = attal-server
unix:!macx {
QMAKE_LFLAGS += -Wl,-rpath,.
}
unix {
target.path = $${ATT_PREFIX}/bin/
INSTALLS += target
}
#The following line was inserted by qt3to4
QT += network xml
|