Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
157 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
	  main.cpp \
21
	  cSettings.cpp
22
 
23
win32 : SOURCES += SerialPort/win_qextserialport.cpp
24
unix  : SOURCES += SerialPort/posix_qextserialport.cpp
25
 
26
HEADERS = SerialPort/qextserialbase.h \
27
	  SerialPort/qextserialport.h \
28
	  SerialPort/ManageSerialPort.h \
29
	  Forms/mktool.h \
30
	  Forms/dlg_Config.h \
31
	  global.h \
32
	  cSettings.h
33
 
34
win32 : HEADERS += SerialPort/win_qextserialport.h
35
unix  : HEADERS += SerialPort/posix_qextserialport.h
36
 
37
unix {
38
    LIBS += -lqwt-qt4
39
    INCLUDEPATH += $(HOME)/include /usr/include/qwt-qt4
40
}
41
 
42
FORMS += Forms/mktool.ui \
43
	 Forms/dlg_Config.ui
44
 
45
TEMPLATE = app
46
 
47
CONFIG += warn_on thread qt
48
 
49
TARGET = QMK-Groundstation
50
 
51
RESOURCES += MKTool.qrc