Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
305 | KeyOz | 1 | TEMPLATE = app |
2 | |||
3 | OBJECTS_DIR = build/.o_unix |
||
4 | UI_DIR = build/.ui |
||
5 | MOC_DIR = build/.moc |
||
6 | RCC_DIR = build/.rcc |
||
7 | DESTDIR = build/bin |
||
8 | |||
361 | KeyOz | 9 | QT *= gui core network xml |
305 | KeyOz | 10 | |
11 | CONFIG += warn_on thread qt |
||
12 | |||
13 | TARGET = QMK-Groundstation |
||
14 | |||
15 | RESOURCES += MKTool.qrc |
||
16 | |||
17 | SOURCES += \ |
||
18 | main.cpp \ |
||
19 | SerialPort/qextserialbase.cpp \ |
||
20 | SerialPort/qextserialport.cpp \ |
||
21 | SerialPort/ManageSerialPort.cpp \ |
||
22 | Forms/mktool.cpp \ |
||
23 | Forms/dlg_Config.cpp \ |
||
24 | Forms/dlg_Motortest.cpp \ |
||
25 | Forms/dlg_Preferences.cpp \ |
||
26 | Forms/wdg_Settings.cpp \ |
||
27 | Classes/cSettings.cpp \ |
||
306 | KeyOz | 28 | Classes/cKML_Server.cpp \ |
305 | KeyOz | 29 | Classes/ToolBox.cpp \ |
30 | Classes/cAttitude.cpp \ |
||
31 | Classes/cSpeedMeter.cpp \ |
||
32 | Classes/cQMK_Server.cpp \ |
||
33 | Logger/Logger.cpp \ |
||
34 | Logger/CSVLogger.cpp \ |
||
35 | Forms/dlg_LCD.cpp \ |
||
36 | Classes/cConnection.cpp \ |
||
307 | KeyOz | 37 | Forms/dlg_Map.cpp \ |
38 | Forms/dlg_MotorMixer.cpp |
||
305 | KeyOz | 39 | win32:SOURCES += SerialPort/win_qextserialport.cpp |
40 | unix:SOURCES += SerialPort/posix_qextserialport.cpp |
||
41 | |||
42 | HEADERS += \ |
||
43 | global.h \ |
||
44 | Parameter_Positions.h \ |
||
45 | SerialPort/qextserialbase.h \ |
||
46 | SerialPort/qextserialport.h \ |
||
47 | SerialPort/ManageSerialPort.h \ |
||
48 | Forms/mktool.h \ |
||
49 | Forms/dlg_Config.h \ |
||
50 | Forms/dlg_Motortest.h \ |
||
51 | Forms/dlg_Preferences.h \ |
||
52 | Forms/wdg_Settings.h \ |
||
53 | Classes/cSettings.h \ |
||
306 | KeyOz | 54 | Classes/cKML_Server.h \ |
305 | KeyOz | 55 | Classes/ToolBox.h \ |
56 | Classes/cAttitude.h \ |
||
57 | Classes/cSpeedMeter.h \ |
||
58 | Classes/cQMK_Server.h \ |
||
59 | Logger/Logger.h \ |
||
60 | Logger/CSVLogger.h \ |
||
61 | Logger/DefaultLogger.h \ |
||
62 | Forms/dlg_LCD.h \ |
||
63 | Classes/cConnection.h \ |
||
64 | typedefs.h \ |
||
307 | KeyOz | 65 | Forms/dlg_Map.h \ |
66 | Forms/dlg_MotorMixer.h |
||
305 | KeyOz | 67 | |
68 | win32:HEADERS += SerialPort/win_qextserialport.h |
||
69 | unix:HEADERS += SerialPort/posix_qextserialport.h |
||
70 | |||
71 | FORMS += \ |
||
72 | Forms/mktool.ui \ |
||
73 | Forms/dlg_Config.ui \ |
||
74 | Forms/dlg_Preferences.ui \ |
||
75 | Forms/dlg_Motortest.ui \ |
||
76 | Forms/wdg_Settings.ui \ |
||
77 | Forms/dlg_LCD.ui \ |
||
307 | KeyOz | 78 | Forms/dlg_Map.ui \ |
79 | Forms/dlg_MotorMixer.ui |