Subversion Repositories Projects

Rev

Rev 199 | Rev 239 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 KeyOz 1
TEMPLATE = app
158 KeyOz 2
 
227 KeyOz 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
158 KeyOz 8
 
227 KeyOz 9
DEFINES += _TTY_POSIX_ _EEEPC_
158 KeyOz 10
 
227 KeyOz 11
LIBS += -lqwt-qt4
12
INCLUDEPATH += $(HOME)/include /usr/include/qwt-qt4
158 KeyOz 13
 
199 KeyOz 14
QT *= gui core network
15
 
227 KeyOz 16
CONFIG += warn_on thread qt
158 KeyOz 17
 
227 KeyOz 18
TARGET = QMK-Groundstation
158 KeyOz 19
 
227 KeyOz 20
RESOURCES += MKTool.qrc
158 KeyOz 21
 
227 KeyOz 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
    Forms/dlg_LCD.cpp
158 KeyOz 39
 
227 KeyOz 40
win32:SOURCES += SerialPort/win_qextserialport.cpp
41
unix:SOURCES  += SerialPort/posix_qextserialport.cpp
158 KeyOz 42
 
227 KeyOz 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 \
55
    Classes/cServer.h \
56
    Classes/ToolBox.h \
57
    Classes/cAttitude.h \
58
    Classes/cSpeedMeter.h \
59
    Classes/cQMK_Server.h \
60
    Forms/dlg_LCD.h
158 KeyOz 61
 
227 KeyOz 62
win32:HEADERS += SerialPort/win_qextserialport.h
63
unix:HEADERS  += SerialPort/posix_qextserialport.h
158 KeyOz 64
 
227 KeyOz 65
FORMS += \
66
    Forms/mktool.ui \
67
    Forms/dlg_Config.ui \
68
    Forms/dlg_Preferences.ui \
69
    Forms/dlg_Motortest.ui \
70
    Forms/wdg_Settings.ui \
71
    Forms/dlg_LCD.ui