Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
801 - 1
# -------------------------------------------------
2
# Project created by QtCreator 2009-07-20T20:04:00
3
# -------------------------------------------------
4
QT += network
5
TARGET = QMK-Communicator
6
TEMPLATE = app
7
 
813 - 8
TRANSLATIONS = $${TARGET}_en.ts \
9
               $${TARGET}_de.ts
10
 
801 - 11
include(../Global/Class_SerialPort.pri)
12
 
13
DESTDIR = ../Binary
14
 
15
debug {
16
  DEFINES += _BETA_
17
}
18
 
813 - 19
# Mac specific stuff
20
macx:{
21
    LIBS    += /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
22
    ICON = ../Global/Images/Icons/$${TARGET}.icns
23
    QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/$${TARGET}.app/Contents/MacOS/.
24
}
25
 
26
# And other
27
!macx:{
28
    QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/.
29
}
30
 
31
OBJECTS_DIR = ../Binary/.build/$${TARGET}
32
UI_DIR = ../Binary/.build/$${TARGET}
33
MOC_DIR = ../Binary/.build/$${TARGET}
34
RCC_DIR = ../Binary/.build/$${TARGET}
35
 
36
RESOURCES += $${TARGET}.qrc
37
 
801 - 38
SOURCES += main.cpp \
39
    ../Global/Class_Input/Input.cpp \
40
    ../Global/Class_Input/Input_TTY.cpp \
41
    ../Global/Class_Input/Input_TCP.cpp \
42
    ../Global/Class_HandlerMK/HandlerMK.cpp \
43
    ../Global/Class_HandlerIP/HandlerIP.cpp \
44
    Dialogs/dlg_Main.cpp \
45
    Classes/cSettings.cpp \
46
    Dialogs/dlg_Preferences.cpp \
47
    Dialogs/dlg_Terminal.cpp
813 - 48
 
801 - 49
HEADERS += Defines.h \
50
    ../Global/Kopter.h \
51
    ../Global/Class_Input/Input.h \
52
    ../Global/Class_Input/Input_TTY.h \
53
    ../Global/Class_Input/Input_TCP.h \
54
    ../Global/Class_HandlerMK/HandlerMK.h \
55
    ../Global/Class_HandlerIP/HandlerIP.h \
56
    Dialogs/dlg_Main.h \
57
    Classes/cSettings.h \
58
    TypeDefs.h \
59
    ../Global/Global.h \
60
    Dialogs/dlg_Preferences.h \
61
    Dialogs/dlg_Terminal.h
813 - 62
 
801 - 63
FORMS += Dialogs/dlg_Main.ui \
64
    Dialogs/dlg_Preferences.ui \
65
    Dialogs/dlg_Terminal.ui