# ------------------------------------------------- # Project created by QtCreator 2009-07-20T20:04:00 # ------------------------------------------------- QT += network TARGET = QMK-Communicator TEMPLATE = app TRANSLATIONS = $${TARGET}_en.ts \ $${TARGET}_de.ts \ $${TARGET}_fr.ts include(../Global/Class_SerialPort.pri) DESTDIR = ../Binary debug { DEFINES += _BETA_ } # 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 \ ../Global/Class_Input/Input_TCP.cpp \ ../Global/Class_HandlerMK/HandlerMK.cpp \ ../Global/Class_HandlerIP/HandlerIP.cpp \ Dialogs/dlg_Main.cpp \ Classes/cSettings.cpp \ Dialogs/dlg_Preferences.cpp \ Dialogs/dlg_Terminal.cpp HEADERS += Defines.h \ ../Global/Kopter.h \ ../Global/Class_Input/Input.h \ ../Global/Class_Input/Input_TTY.h \ ../Global/Class_Input/Input_TCP.h \ ../Global/Class_HandlerMK/HandlerMK.h \ ../Global/Class_HandlerIP/HandlerIP.h \ Dialogs/dlg_Main.h \ Classes/cSettings.h \ TypeDefs.h \ ../Global/Global.h \ Dialogs/dlg_Preferences.h \ Dialogs/dlg_Terminal.h FORMS += Dialogs/dlg_Main.ui \ Dialogs/dlg_Preferences.ui \ Dialogs/dlg_Terminal.ui