Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
170 KeyOz 1
unix:OBJECTS_DIR = build/.o/unix
2
win32:OBJECTS_DIR = build/.o/win32
3
mac:OBJECTS_DIR = build/.o/mac
4
UI_DIR = build/.ui
5
MOC_DIR = build/.moc
6
RCC_DIR = build/.rcc
7
DESTDIR = build/bin
8
win32:DEFINES += _TTY_WIN_ \
9
    QWT_DLL \
10
    QT_DLL
11
unix:DEFINES += _TTY_POSIX_
12
QT *= gui \
13
    core
14
SOURCES = SerialPort/qextserialbase.cpp \
15
    SerialPort/qextserialport.cpp \
16
    SerialPort/ManageSerialPort.cpp \
17
    Forms/mktool.cpp \
18
    Forms/dlg_Config.cpp \
19
    Forms/dlg_Motortest.cpp \
20
    Forms/dlg_Preferences.cpp \
21
    main.cpp \
22
    cSettings.cpp \
23
    ToolBox.cpp \
24
    Forms/wdg_Settings.cpp
25
win32:SOURCES += SerialPort/win_qextserialport.cpp
26
unix:SOURCES += SerialPort/posix_qextserialport.cpp
27
HEADERS = SerialPort/qextserialbase.h \
28
    SerialPort/qextserialport.h \
29
    SerialPort/ManageSerialPort.h \
30
    Forms/mktool.h \
31
    Forms/dlg_Config.h \
32
    Forms/dlg_Motortest.h \
33
    Forms/dlg_Preferences.h \
34
    global.h \
35
    cSettings.h \
36
    Parameter_Positions.h \
37
    ToolBox.h \
38
    Forms/wdg_Settings.h
39
win32:HEADERS += SerialPort/win_qextserialport.h
40
unix:HEADERS += SerialPort/posix_qextserialport.h
41
FORMS += Forms/mktool.ui \
42
    Forms/dlg_Config.ui \
43
    Forms/dlg_Preferences.ui \
44
    Forms/dlg_Motortest.ui \
45
    Forms/wdg_Settings.ui
46
unix {
47
    LIBS += -lqwt
48
    INCLUDEPATH += $(HOME)/include \
49
        /usr/include/qwt
50
}
51
TEMPLATE = app
52
CONFIG += warn_on \
53
    thread \
54
    qt
55
TARGET = QMK-Groundstation
56
RESOURCES += MKTool.qrc