Subversion Repositories Projects

Compare Revisions

Regard whitespace Rev 226 → Rev 227

/QMK-Groundstation/trunk/debian.pro
1,23 → 1,27
unix : OBJECTS_DIR = build/.o/unix
win32 : OBJECTS_DIR = build/.o/win32
mac : OBJECTS_DIR = build/.o/mac
TEMPLATE = app
 
OBJECTS_DIR = build/.o_unix
UI_DIR = build/.ui
MOC_DIR = build/.moc
RCC_DIR = build/.rcc
DESTDIR = build/bin
 
win32 : DEFINES += _TTY_WIN_ QWT_DLL QT_DLL
unix : DEFINES += _TTY_POSIX_
DEFINES += _TTY_POSIX_
 
unix {
LIBS += -lqwt-qt4
INCLUDEPATH += $(HOME)/include /usr/include/qwt-qt4
}
 
QT *= gui core network
 
SOURCES = SerialPort/qextserialbase.cpp \
CONFIG += warn_on thread qt
 
TARGET = QMK-Groundstation
 
RESOURCES += MKTool.qrc
 
SOURCES = \
main.cpp \
SerialPort/qextserialbase.cpp \
SerialPort/qextserialport.cpp \
SerialPort/ManageSerialPort.cpp \
Forms/mktool.cpp \
24,16 → 28,22
Forms/dlg_Config.cpp \
Forms/dlg_Motortest.cpp \
Forms/dlg_Preferences.cpp \
main.cpp \
cSettings.cpp \
Forms/wdg_Settings.cpp \
Classes/cSettings.cpp \
Classes/cServer.cpp \
ToolBox.cpp \
Forms/wdg_Settings.cpp
Classes/ToolBox.cpp \
Classes/cAttitude.cpp \
Classes/cSpeedMeter.cpp \
Classes/cQMK_Server.cpp \
Forms/dlg_LCD.cpp
 
win32 : SOURCES += SerialPort/win_qextserialport.cpp
unix : SOURCES += SerialPort/posix_qextserialport.cpp
 
HEADERS = SerialPort/qextserialbase.h \
HEADERS = \
global.h \
Parameter_Positions.h \
SerialPort/qextserialbase.h \
SerialPort/qextserialport.h \
SerialPort/ManageSerialPort.h \
Forms/mktool.h \
40,27 → 50,22
Forms/dlg_Config.h \
Forms/dlg_Motortest.h \
Forms/dlg_Preferences.h \
global.h \
cSettings.h \
Forms/wdg_Settings.h \
Classes/cSettings.h \
Classes/cServer.h \
Parameter_Positions.h \
ToolBox.h \
Forms/wdg_Settings.h
Classes/ToolBox.h \
Classes/cAttitude.h \
Classes/cSpeedMeter.h \
Classes/cQMK_Server.h \
Forms/dlg_LCD.h
 
win32 : HEADERS += SerialPort/win_qextserialport.h
unix : HEADERS += SerialPort/posix_qextserialport.h
 
FORMS += Forms/mktool.ui \
FORMS += \
Forms/mktool.ui \
Forms/dlg_Config.ui \
Forms/dlg_Preferences.ui \
Forms/dlg_Motortest.ui \
Forms/wdg_Settings.ui
 
TEMPLATE = app
 
CONFIG += warn_on thread qt
 
TARGET = QMK-Groundstation
 
RESOURCES += MKTool.qrc
 
Forms/wdg_Settings.ui \
Forms/dlg_LCD.ui