File: server.pro

package info (click to toggle)
attal 1.0~rc2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 4,348 kB
  • ctags: 7,428
  • sloc: cpp: 55,101; sh: 267; ansic: 100; makefile: 54
file content (54 lines) | stat: -rw-r--r-- 946 bytes parent folder | download | duplicates (2)
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