Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 812 → Rev 813

/QMK-Groundstation/tags/QMK-Tools v1.3.0/QMK-Communicator/QMK-Communicator.pro
5,6 → 5,9
TARGET = QMK-Communicator
TEMPLATE = app
 
TRANSLATIONS = $${TARGET}_en.ts \
$${TARGET}_de.ts
 
include(../Global/Class_SerialPort.pri)
 
DESTDIR = ../Binary
13,11 → 16,25
DEFINES += _BETA_
}
 
OBJECTS_DIR = ../Binary/.build/QMK-Communicator
UI_DIR = ../Binary/.build/QMK-Communicator
MOC_DIR = ../Binary/.build/QMK-Communicator
RCC_DIR = ../Binary/.build/QMK-Communicator
RESOURCES += QMK-Communicator.qrc
# Mac specific stuff
macx:{
LIBS += /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
ICON = ../Global/Images/Icons/$${TARGET}.icns
QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/$${TARGET}.app/Contents/MacOS/.
}
 
# And other
!macx:{
QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/.
}
 
OBJECTS_DIR = ../Binary/.build/$${TARGET}
UI_DIR = ../Binary/.build/$${TARGET}
MOC_DIR = ../Binary/.build/$${TARGET}
RCC_DIR = ../Binary/.build/$${TARGET}
 
RESOURCES += $${TARGET}.qrc
 
SOURCES += main.cpp \
../Global/Class_Input/Input.cpp \
../Global/Class_Input/Input_TTY.cpp \
28,6 → 45,7
Classes/cSettings.cpp \
Dialogs/dlg_Preferences.cpp \
Dialogs/dlg_Terminal.cpp
 
HEADERS += Defines.h \
../Global/Kopter.h \
../Global/Class_Input/Input.h \
41,6 → 59,7
../Global/Global.h \
Dialogs/dlg_Preferences.h \
Dialogs/dlg_Terminal.h
 
FORMS += Dialogs/dlg_Main.ui \
Dialogs/dlg_Preferences.ui \
Dialogs/dlg_Terminal.ui