Rev 801 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 801 | Rev 908 | ||
---|---|---|---|
Line 3... | Line 3... | ||
3 | # ------------------------------------------------- |
3 | # ------------------------------------------------- |
4 | QT += network |
4 | QT += network |
5 | TARGET = QMK-Communicator |
5 | TARGET = QMK-Communicator |
6 | TEMPLATE = app |
6 | TEMPLATE = app |
Line -... | Line 7... | ||
- | 7 | ||
- | 8 | TRANSLATIONS = $${TARGET}_en.ts \ |
|
- | 9 | $${TARGET}_de.ts \ |
|
- | 10 | $${TARGET}_fr.ts |
|
7 | 11 | ||
Line 8... | Line 12... | ||
8 | include(../Global/Class_SerialPort.pri) |
12 | include(../Global/Class_SerialPort.pri) |
Line 9... | Line 13... | ||
9 | 13 | ||
10 | DESTDIR = ../Binary |
14 | DESTDIR = ../Binary |
11 | 15 | ||
Line -... | Line 16... | ||
- | 16 | debug { |
|
- | 17 | DEFINES += _BETA_ |
|
- | 18 | } |
|
- | 19 | ||
- | 20 | # Mac specific stuff |
|
- | 21 | macx:{ |
|
- | 22 | LIBS += /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation |
|
- | 23 | ICON = ../Global/Images/Icons/$${TARGET}.icns |
|
- | 24 | QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/$${TARGET}.app/Contents/MacOS/. |
|
- | 25 | } |
|
- | 26 | ||
- | 27 | # And other |
|
12 | debug { |
28 | !macx:{ |
13 | DEFINES += _BETA_ |
29 | QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/. |
14 | } |
30 | } |
15 | 31 | ||
- | 32 | OBJECTS_DIR = ../Binary/.build/$${TARGET} |
|
16 | OBJECTS_DIR = ../Binary/.build/QMK-Communicator |
33 | UI_DIR = ../Binary/.build/$${TARGET} |
- | 34 | MOC_DIR = ../Binary/.build/$${TARGET} |
|
17 | UI_DIR = ../Binary/.build/QMK-Communicator |
35 | RCC_DIR = ../Binary/.build/$${TARGET} |
18 | MOC_DIR = ../Binary/.build/QMK-Communicator |
36 | |
19 | RCC_DIR = ../Binary/.build/QMK-Communicator |
37 | RESOURCES += $${TARGET}.qrc |
20 | RESOURCES += QMK-Communicator.qrc |
38 | |
21 | SOURCES += main.cpp \ |
39 | SOURCES += main.cpp \ |
22 | ../Global/Class_Input/Input.cpp \ |
40 | ../Global/Class_Input/Input.cpp \ |
23 | ../Global/Class_Input/Input_TTY.cpp \ |
41 | ../Global/Class_Input/Input_TTY.cpp \ |
24 | ../Global/Class_Input/Input_TCP.cpp \ |
42 | ../Global/Class_Input/Input_TCP.cpp \ |
25 | ../Global/Class_HandlerMK/HandlerMK.cpp \ |
43 | ../Global/Class_HandlerMK/HandlerMK.cpp \ |
26 | ../Global/Class_HandlerIP/HandlerIP.cpp \ |
44 | ../Global/Class_HandlerIP/HandlerIP.cpp \ |
- | 45 | Dialogs/dlg_Main.cpp \ |
|
27 | Dialogs/dlg_Main.cpp \ |
46 | Classes/cSettings.cpp \ |
28 | Classes/cSettings.cpp \ |
47 | Dialogs/dlg_Preferences.cpp \ |
29 | Dialogs/dlg_Preferences.cpp \ |
48 | Dialogs/dlg_Terminal.cpp |
30 | Dialogs/dlg_Terminal.cpp |
49 | |
31 | HEADERS += Defines.h \ |
50 | HEADERS += Defines.h \ |
Line 39... | Line 58... | ||
39 | Classes/cSettings.h \ |
58 | Classes/cSettings.h \ |
40 | TypeDefs.h \ |
59 | TypeDefs.h \ |
41 | ../Global/Global.h \ |
60 | ../Global/Global.h \ |
42 | Dialogs/dlg_Preferences.h \ |
61 | Dialogs/dlg_Preferences.h \ |
43 | Dialogs/dlg_Terminal.h |
62 | Dialogs/dlg_Terminal.h |
- | 63 | ||
44 | FORMS += Dialogs/dlg_Main.ui \ |
64 | FORMS += Dialogs/dlg_Main.ui \ |
45 | Dialogs/dlg_Preferences.ui \ |
65 | Dialogs/dlg_Preferences.ui \ |
46 | Dialogs/dlg_Terminal.ui |
66 | Dialogs/dlg_Terminal.ui |