Rev 674 | Rev 801 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
674 | KeyOz | 1 | # ------------------------------------------------- |
2 | # Project created by QtCreator 2009-07-20T20:04:00 |
||
3 | # ------------------------------------------------- |
||
4 | |||
750 | KeyOz | 5 | include(../Global/Widget_Connection.pri) |
674 | KeyOz | 6 | |
7 | QT += network |
||
8 | TARGET = QMK-Scope |
||
9 | TEMPLATE = app |
||
10 | DESTDIR = ../Binary |
||
11 | OBJECTS_DIR = ../Binary/.build/QMK-Scope |
||
12 | UI_DIR = ../Binary/.build/QMK-Scope |
||
13 | MOC_DIR = ../Binary/.build/QMK-Scope |
||
14 | RCC_DIR = ../Binary/.build/QMK-Scope |
||
15 | |||
16 | debug { |
||
17 | DEFINES += _BETA_ |
||
18 | LIBS += -lqwt |
||
19 | INCLUDEPATH += $(HOME)/include /usr/include/qwt |
||
20 | } |
||
21 | |||
22 | Suse { |
||
23 | LIBS += -lqwt |
||
24 | INCLUDEPATH += $(HOME)/include /usr/include/qwt |
||
25 | } |
||
26 | |||
27 | Debian { |
||
28 | LIBS += -lqwt-qt4 |
||
29 | INCLUDEPATH += $(HOME)/include /usr/include/qwt-qt4 |
||
30 | } |
||
31 | |||
32 | Gentoo { |
||
33 | LIBS += -lqwt |
||
34 | INCLUDEPATH += $(HOME)/include /usr/include/qwt5 |
||
35 | } |
||
36 | |||
37 | OSX { |
||
38 | LIBS += -L/opt/local/lib -lqwt |
||
39 | INCLUDEPATH += /opt/local/include |
||
40 | } |
||
41 | RESOURCES += QMK-Scope.qrc |
||
42 | |||
43 | SOURCES += main.cpp \ |
||
44 | Dialogs/dlg_Main.cpp \ |
||
45 | Classes/cSettings.cpp |
||
46 | HEADERS += Defines.h \ |
||
47 | ../Global/Global.h \ |
||
48 | Dialogs/dlg_Main.h \ |
||
49 | Classes/cSettings.h \ |
||
50 | TypeDefs.h |
||
51 | FORMS += Dialogs/dlg_Main.ui |