Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
158 | KeyOz | 1 | unix : OBJECTS_DIR = build/.o/unix |
2 | win32 : OBJECTS_DIR = build/.o/win32 |
||
3 | mac : OBJECTS_DIR = build/.o/mac |
||
4 | |||
5 | UI_DIR = build/.ui |
||
6 | MOC_DIR = build/.moc |
||
7 | RCC_DIR = build/.rcc |
||
8 | DESTDIR = build/bin |
||
9 | |||
10 | win32 : DEFINES += _TTY_WIN_ QWT_DLL QT_DLL |
||
11 | unix : DEFINES += _TTY_POSIX_ |
||
12 | |||
199 | KeyOz | 13 | unix { |
14 | LIBS += -lqwt |
||
15 | INCLUDEPATH += $(HOME)/include /usr/include/qwt |
||
16 | } |
||
158 | KeyOz | 17 | |
199 | KeyOz | 18 | QT *= gui core network |
19 | |||
158 | KeyOz | 20 | SOURCES = SerialPort/qextserialbase.cpp \ |
21 | SerialPort/qextserialport.cpp \ |
||
22 | SerialPort/ManageSerialPort.cpp \ |
||
23 | Forms/mktool.cpp \ |
||
24 | Forms/dlg_Config.cpp \ |
||
25 | Forms/dlg_Motortest.cpp \ |
||
159 | KeyOz | 26 | Forms/dlg_Preferences.cpp \ |
158 | KeyOz | 27 | main.cpp \ |
28 | cSettings.cpp \ |
||
199 | KeyOz | 29 | Classes/cServer.cpp \ |
167 | KeyOz | 30 | ToolBox.cpp \ |
199 | KeyOz | 31 | Forms/wdg_Settings.cpp |
158 | KeyOz | 32 | |
33 | win32 : SOURCES += SerialPort/win_qextserialport.cpp |
||
34 | unix : SOURCES += SerialPort/posix_qextserialport.cpp |
||
35 | |||
36 | HEADERS = SerialPort/qextserialbase.h \ |
||
37 | SerialPort/qextserialport.h \ |
||
38 | SerialPort/ManageSerialPort.h \ |
||
39 | Forms/mktool.h \ |
||
40 | Forms/dlg_Config.h \ |
||
41 | Forms/dlg_Motortest.h \ |
||
159 | KeyOz | 42 | Forms/dlg_Preferences.h \ |
158 | KeyOz | 43 | global.h \ |
44 | cSettings.h \ |
||
199 | KeyOz | 45 | Classes/cServer.h \ |
158 | KeyOz | 46 | Parameter_Positions.h \ |
167 | KeyOz | 47 | ToolBox.h \ |
199 | KeyOz | 48 | Forms/wdg_Settings.h |
158 | KeyOz | 49 | |
50 | win32 : HEADERS += SerialPort/win_qextserialport.h |
||
51 | unix : HEADERS += SerialPort/posix_qextserialport.h |
||
52 | |||
53 | FORMS += Forms/mktool.ui \ |
||
54 | Forms/dlg_Config.ui \ |
||
159 | KeyOz | 55 | Forms/dlg_Preferences.ui \ |
167 | KeyOz | 56 | Forms/dlg_Motortest.ui \ |
199 | KeyOz | 57 | Forms/wdg_Settings.ui |
158 | KeyOz | 58 | |
59 | TEMPLATE = app |
||
60 | |||
61 | CONFIG += warn_on thread qt |
||
62 | |||
63 | TARGET = QMK-Groundstation |
||
64 | |||
65 | RESOURCES += MKTool.qrc |