Rev 227 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 227 | Rev 239 | ||
---|---|---|---|
1 | TEMPLATE = app |
1 | TEMPLATE = app |
2 | 2 | ||
3 | OBJECTS_DIR = build/.o_unix |
3 | OBJECTS_DIR = build/.o_unix |
4 | UI_DIR = build/.ui |
4 | UI_DIR = build/.ui |
5 | MOC_DIR = build/.moc |
5 | MOC_DIR = build/.moc |
6 | RCC_DIR = build/.rcc |
6 | RCC_DIR = build/.rcc |
7 | DESTDIR = build/bin |
7 | DESTDIR = build/bin |
8 | 8 | ||
9 | DEFINES += _TTY_POSIX_ |
9 | DEFINES += _TTY_POSIX_ |
10 | 10 | ||
11 | LIBS += -lqwt |
11 | LIBS += -lqwt |
12 | INCLUDEPATH += $(HOME)/include /usr/include/qwt |
12 | INCLUDEPATH += $(HOME)/include /usr/include/qwt |
13 | 13 | ||
14 | QT *= gui core network |
14 | QT *= gui core network |
15 | 15 | ||
16 | CONFIG += warn_on thread qt |
16 | CONFIG += warn_on thread qt |
17 | 17 | ||
18 | TARGET = QMK-Groundstation |
18 | TARGET = QMK-Groundstation |
19 | 19 | ||
20 | RESOURCES += MKTool.qrc |
20 | RESOURCES += MKTool.qrc |
21 | 21 | ||
22 | SOURCES = \ |
22 | SOURCES = \ |
23 | main.cpp \ |
23 | main.cpp \ |
24 | SerialPort/qextserialbase.cpp \ |
24 | SerialPort/qextserialbase.cpp \ |
25 | SerialPort/qextserialport.cpp \ |
25 | SerialPort/qextserialport.cpp \ |
26 | SerialPort/ManageSerialPort.cpp \ |
26 | SerialPort/ManageSerialPort.cpp \ |
27 | Forms/mktool.cpp \ |
27 | Forms/mktool.cpp \ |
28 | Forms/dlg_Config.cpp \ |
28 | Forms/dlg_Config.cpp \ |
29 | Forms/dlg_Motortest.cpp \ |
29 | Forms/dlg_Motortest.cpp \ |
30 | Forms/dlg_Preferences.cpp \ |
30 | Forms/dlg_Preferences.cpp \ |
31 | Forms/wdg_Settings.cpp \ |
31 | Forms/wdg_Settings.cpp \ |
32 | Classes/cSettings.cpp \ |
32 | Classes/cSettings.cpp \ |
33 | Classes/cServer.cpp \ |
33 | Classes/cServer.cpp \ |
34 | Classes/ToolBox.cpp \ |
34 | Classes/ToolBox.cpp \ |
35 | Classes/cAttitude.cpp \ |
35 | Classes/cAttitude.cpp \ |
36 | Classes/cSpeedMeter.cpp \ |
36 | Classes/cSpeedMeter.cpp \ |
37 | Classes/cQMK_Server.cpp \ |
37 | Classes/cQMK_Server.cpp \ |
- | 38 | Logger/Logger.cpp \ |
|
- | 39 | Logger/CSVLogger.cpp \ |
|
38 | Forms/dlg_LCD.cpp |
40 | Forms/dlg_LCD.cpp |
39 | 41 | ||
40 | win32:SOURCES += SerialPort/win_qextserialport.cpp |
42 | win32:SOURCES += SerialPort/win_qextserialport.cpp |
41 | unix:SOURCES += SerialPort/posix_qextserialport.cpp |
43 | unix:SOURCES += SerialPort/posix_qextserialport.cpp |
42 | 44 | ||
43 | HEADERS = \ |
45 | HEADERS = \ |
44 | global.h \ |
46 | global.h \ |
45 | Parameter_Positions.h \ |
47 | Parameter_Positions.h \ |
46 | SerialPort/qextserialbase.h \ |
48 | SerialPort/qextserialbase.h \ |
47 | SerialPort/qextserialport.h \ |
49 | SerialPort/qextserialport.h \ |
48 | SerialPort/ManageSerialPort.h \ |
50 | SerialPort/ManageSerialPort.h \ |
49 | Forms/mktool.h \ |
51 | Forms/mktool.h \ |
50 | Forms/dlg_Config.h \ |
52 | Forms/dlg_Config.h \ |
51 | Forms/dlg_Motortest.h \ |
53 | Forms/dlg_Motortest.h \ |
52 | Forms/dlg_Preferences.h \ |
54 | Forms/dlg_Preferences.h \ |
53 | Forms/wdg_Settings.h \ |
55 | Forms/wdg_Settings.h \ |
54 | Classes/cSettings.h \ |
56 | Classes/cSettings.h \ |
55 | Classes/cServer.h \ |
57 | Classes/cServer.h \ |
56 | Classes/ToolBox.h \ |
58 | Classes/ToolBox.h \ |
57 | Classes/cAttitude.h \ |
59 | Classes/cAttitude.h \ |
58 | Classes/cSpeedMeter.h \ |
60 | Classes/cSpeedMeter.h \ |
59 | Classes/cQMK_Server.h \ |
61 | Classes/cQMK_Server.h \ |
- | 62 | Logger/Logger.h \ |
|
- | 63 | Logger/CSVLogger.h \ |
|
- | 64 | Logger/DefaultLogger.h \ |
|
60 | Forms/dlg_LCD.h |
65 | Forms/dlg_LCD.h |
61 | 66 | ||
62 | win32:HEADERS += SerialPort/win_qextserialport.h |
67 | win32:HEADERS += SerialPort/win_qextserialport.h |
63 | unix:HEADERS += SerialPort/posix_qextserialport.h |
68 | unix:HEADERS += SerialPort/posix_qextserialport.h |
64 | 69 | ||
65 | FORMS += \ |
70 | FORMS += \ |
66 | Forms/mktool.ui \ |
71 | Forms/mktool.ui \ |
67 | Forms/dlg_Config.ui \ |
72 | Forms/dlg_Config.ui \ |
68 | Forms/dlg_Preferences.ui \ |
73 | Forms/dlg_Preferences.ui \ |
69 | Forms/dlg_Motortest.ui \ |
74 | Forms/dlg_Motortest.ui \ |
70 | Forms/wdg_Settings.ui \ |
75 | Forms/wdg_Settings.ui \ |
71 | Forms/dlg_LCD.ui |
76 | Forms/dlg_LCD.ui |