Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
158 KeyOz 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 += _EEEPC_ _TTY_POSIX_
12
 
13
QT *= gui core
14
 
15
SOURCES = SerialPort/qextserialbase.cpp \
16
	  SerialPort/qextserialport.cpp \
17
	  SerialPort/ManageSerialPort.cpp \
18
	  Forms/mktool.cpp \
19
	  Forms/dlg_Config.cpp \
20
	  Forms/dlg_Motortest.cpp \
159 KeyOz 21
	  Forms/dlg_Preferences.cpp \
158 KeyOz 22
	  main.cpp \
23
	  cSettings.cpp \
24
	  ToolBox.cpp
25
 
26
win32 : SOURCES += SerialPort/win_qextserialport.cpp
27
unix  : SOURCES += SerialPort/posix_qextserialport.cpp
28
 
29
HEADERS = SerialPort/qextserialbase.h \
30
	  SerialPort/qextserialport.h \
31
	  SerialPort/ManageSerialPort.h \
32
	  Forms/mktool.h \
33
	  Forms/dlg_Config.h \
34
	  Forms/dlg_Motortest.h \
159 KeyOz 35
	  Forms/dlg_Preferences.h \
158 KeyOz 36
	  global.h \
37
	  cSettings.h \
38
	  Parameter_Positions.h \
39
	  ToolBox.h
40
 
41
win32 : HEADERS += SerialPort/win_qextserialport.h
42
unix  : HEADERS += SerialPort/posix_qextserialport.h
43
 
44
FORMS += Forms/mktool.ui \
45
	 Forms/dlg_Config.ui \
159 KeyOz 46
	 Forms/dlg_Preferences.ui \
158 KeyOz 47
	 Forms/dlg_Motortest.ui
48
 
49
unix {
50
	LIBS += -lqwt-qt4
51
	INCLUDEPATH += $(HOME)/include /usr/include/qwt-qt4
52
}
53
 
54
TEMPLATE = app
55
 
56
CONFIG += warn_on thread qt
57
 
58
TARGET = QMK-Groundstation
59
 
60
RESOURCES += MKTool.qrc