Subversion Repositories Projects

Rev

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 \
481 KeyOz 38
    Forms/dlg_MapPos.cpp \
307 KeyOz 39
    Forms/dlg_MotorMixer.cpp
305 KeyOz 40
win32:SOURCES += SerialPort/win_qextserialport.cpp
41
unix:SOURCES  += SerialPort/posix_qextserialport.cpp
42
 
43
HEADERS += \
44
    global.h \
45
    Parameter_Positions.h \
46
    SerialPort/qextserialbase.h \
47
    SerialPort/qextserialport.h \
48
    SerialPort/ManageSerialPort.h \
49
    Forms/mktool.h \
50
    Forms/dlg_Config.h \
51
    Forms/dlg_Motortest.h \
52
    Forms/dlg_Preferences.h \
53
    Forms/wdg_Settings.h \
54
    Classes/cSettings.h \
306 KeyOz 55
    Classes/cKML_Server.h \
305 KeyOz 56
    Classes/ToolBox.h \
57
    Classes/cAttitude.h \
58
    Classes/cSpeedMeter.h \
59
    Classes/cQMK_Server.h \
60
    Logger/Logger.h \
61
    Logger/CSVLogger.h \
62
    Logger/DefaultLogger.h \
63
    Forms/dlg_LCD.h \
64
    Classes/cConnection.h \
65
    typedefs.h \
307 KeyOz 66
    Forms/dlg_Map.h \
481 KeyOz 67
    Forms/dlg_MapPos.h \
307 KeyOz 68
    Forms/dlg_MotorMixer.h
305 KeyOz 69
 
70
win32:HEADERS += SerialPort/win_qextserialport.h
71
unix:HEADERS  += SerialPort/posix_qextserialport.h
72
 
73
FORMS += \
74
    Forms/mktool.ui \
75
    Forms/dlg_Config.ui \
76
    Forms/dlg_Preferences.ui \
77
    Forms/dlg_Motortest.ui \
78
    Forms/wdg_Settings.ui \
79
    Forms/dlg_LCD.ui \
307 KeyOz 80
    Forms/dlg_Map.ui \
481 KeyOz 81
    Forms/dlg_MapPos.ui \
307 KeyOz 82
    Forms/dlg_MotorMixer.ui