Subversion Repositories Projects

Rev

Rev 199 | Go to most recent revision | Show entire file | Ignore 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
-
 
4
 
-
 
5
UI_DIR  = build/.ui
-
 
6
MOC_DIR = build/.moc
-
 
7
RCC_DIR = build/.rcc
-
 
8
DESTDIR = build/bin
-
 
9
 
-
 
10
win32 : DEFINES += _TTY_WIN_ QWT_DLL QT_DLL
-
 
11
unix  : DEFINES += _TTY_POSIX_
-
 
12
 
-
 
13
unix {
-
 
14
	LIBS += -lqwt
1
TEMPLATE = app
15
	INCLUDEPATH += $(HOME)/include /usr/include/qwt
-
 
16
}
-
 
Line -... Line 2...
-
 
2
 
-
 
3
OBJECTS_DIR = build/.o_unix
-
 
4
UI_DIR      = build/.ui
-
 
5
MOC_DIR     = build/.moc
17
 
6
RCC_DIR     = build/.rcc
Line 18... Line -...
18
QT *= gui core network
-
 
19
 
-
 
20
SOURCES = SerialPort/qextserialbase.cpp \
-
 
21
	  SerialPort/qextserialport.cpp \
-
 
22
	  SerialPort/ManageSerialPort.cpp \
-
 
23
	  Forms/mktool.cpp \
-
 
24
	  Forms/dlg_Config.cpp \
-
 
25
	  Forms/dlg_Motortest.cpp \
-
 
26
	  Forms/dlg_Preferences.cpp \
-
 
27
	  main.cpp \
-
 
28
	  cSettings.cpp \
-
 
29
	  Classes/cServer.cpp \
-
 
30
	  ToolBox.cpp \
-
 
31
	  Forms/wdg_Settings.cpp
-
 
32
 
-
 
33
win32 : SOURCES += SerialPort/win_qextserialport.cpp
-
 
34
unix  : SOURCES += SerialPort/posix_qextserialport.cpp
-
 
35
 
-
 
36
HEADERS = SerialPort/qextserialbase.h \
-
 
37
	  SerialPort/qextserialport.h \
-
 
38
	  SerialPort/ManageSerialPort.h \
-
 
39
	  Forms/mktool.h \
-
 
40
	  Forms/dlg_Config.h \
-
 
41
	  Forms/dlg_Motortest.h \
-
 
42
	  Forms/dlg_Preferences.h \
-
 
43
	  global.h \
-
 
44
	  cSettings.h \
-
 
45
	  Classes/cServer.h \
-
 
46
	  Parameter_Positions.h \
-
 
47
	  ToolBox.h \
-
 
48
	  Forms/wdg_Settings.h
-
 
49
 
-
 
50
win32 : HEADERS += SerialPort/win_qextserialport.h
-
 
51
unix  : HEADERS += SerialPort/posix_qextserialport.h
7
DESTDIR     = build/bin
52
 
-
 
53
FORMS += Forms/mktool.ui \
-
 
54
	 Forms/dlg_Config.ui \
-
 
55
	 Forms/dlg_Preferences.ui \
-
 
Line 56... Line 8...
56
	 Forms/dlg_Motortest.ui \
8
 
-
 
9
DEFINES += _TTY_POSIX_
-
 
10
 
-
 
11
LIBS += -lqwt
Line 57... Line 12...
57
	 Forms/wdg_Settings.ui
12
INCLUDEPATH += $(HOME)/include /usr/include/qwt
Line 58... Line 13...
58
 
13
 
Line 59... Line 14...
59
TEMPLATE = app
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
    Forms/dlg_LCD.cpp
-
 
39
 
-
 
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 \
-
 
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
-
 
61
 
-
 
62
win32:HEADERS += SerialPort/win_qextserialport.h
-
 
63
unix:HEADERS  += SerialPort/posix_qextserialport.h
-
 
64
 
-
 
65
FORMS += \