source: ntrip/trunk/GnssCenter/main/main.pro@ 5021

Last change on this file since 5021 was 5021, checked in by mervart, 11 years ago
File size: 995 bytes
Line 
1
2TEMPLATE = app
3TARGET = ../GnssCenter
4
5QT += svg
6CONFIG += debug
7
8debug:OBJECTS_DIR = .obj/debug
9debug:MOC_DIR = .moc/debug
10release:OBJECTS_DIR = .obj/release
11release:MOC_DIR = .moc/release
12
13INCLUDEPATH += ../qwt
14
15unix:LIBS += -L../qwt -lqwt
16win32:LIBS += -L../qwt/release -lqwt
17
18HEADERS += app.h mdiarea.h \
19 settings.h mainwin.h plugininterface.h
20
21SOURCES += GnssCenter.cpp app.cpp mdiarea.cpp \
22 settings.cpp mainwin.cpp
23
24exists(map) {
25 INCLUDEPATH += map
26 HEADERS += map/svgmap.h
27 SOURCES += map/svgmap.cpp
28 RESOURCES += map/svgmap.qrc
29}
30
31exists(inpedit) {
32 INCLUDEPATH += inpedit
33
34 HEADERS += inpedit/keyword.h inpedit/panel.h inpedit/inpedit.h \
35 inpedit/selwin.h inpedit/lineedit.h inpedit/uniline.h
36
37 SOURCES += inpedit/keyword.cpp inpedit/panel.cpp inpedit/inpedit.cpp \
38 inpedit/selwin.cpp inpedit/lineedit.cpp inpedit/uniline.cpp
39}
Note: See TracBrowser for help on using the repository browser.