Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
279 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
 
9
DEFINES += _TTY_POSIX_
10
 
11
LIBS += -lqwt
12
INCLUDEPATH += $(HOME)/include /usr/include/qwt
13
 
14
QT *= gui core network
15
 
16
CONFIG += warn_on thread qt
17
 
18
TARGET = QMK-Groundstation
19
 
20
RESOURCES += MKTool.qrc
21
 
22
SOURCES = \
23
    main.cpp \
24
    SerialPort/qextserialbase.cpp \
25
    SerialPort/qextserialport.cpp \
26
    SerialPort/ManageSerialPort.cpp \
27
    Forms/mktool.cpp \
28
    Forms/dlg_Config.cpp \
29
    Forms/dlg_Motortest.cpp \
30
    Forms/dlg_Preferences.cpp \
31
    Forms/wdg_Settings.cpp \
32
    Classes/cSettings.cpp \
33
    Classes/cServer.cpp \
34
    Classes/ToolBox.cpp \
35
    Classes/cAttitude.cpp \
36
    Classes/cSpeedMeter.cpp \
37
    Classes/cQMK_Server.cpp \
38
    Logger/Logger.cpp \
39
    Logger/CSVLogger.cpp \
40
    Forms/dlg_LCD.cpp \
41
    Classes/cConnection.cpp
42
 
43
win32:SOURCES += SerialPort/win_qextserialport.cpp
44
unix:SOURCES  += SerialPort/posix_qextserialport.cpp
45
 
46
HEADERS = \
47
    global.h \
48
    Parameter_Positions.h \
49
    SerialPort/qextserialbase.h \
50
    SerialPort/qextserialport.h \
51
    SerialPort/ManageSerialPort.h \
52
    Forms/mktool.h \
53
    Forms/dlg_Config.h \
54
    Forms/dlg_Motortest.h \
55
    Forms/dlg_Preferences.h \
56
    Forms/wdg_Settings.h \
57
    Classes/cSettings.h \
58
    Classes/cServer.h \
59
    Classes/ToolBox.h \
60
    Classes/cAttitude.h \
61
    Classes/cSpeedMeter.h \
62
    Classes/cQMK_Server.h \
63
    Logger/Logger.h \
64
    Logger/CSVLogger.h \
65
    Logger/DefaultLogger.h \
66
    Forms/dlg_LCD.h \
67
    Classes/cConnection.h \
68
    typedefs.h
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