Subversion Repositories Projects

Rev

Rev 199 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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