Rev 711 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
674 | KeyOz | 1 | # ------------------------------------------------- |
2 | # Project created by QtCreator 2009-07-20T20:04:00 |
||
3 | # ------------------------------------------------- |
||
4 | QT += network |
||
5 | TARGET = QMK-Communicator |
||
6 | TEMPLATE = app |
||
711 | KeyOz | 7 | |
8 | include(../Global/Class_SerialPort.pri) |
||
9 | |||
674 | KeyOz | 10 | DESTDIR = ../Binary |
801 | - | 11 | |
12 | debug { |
||
13 | DEFINES += _BETA_ |
||
14 | } |
||
15 | |||
674 | KeyOz | 16 | OBJECTS_DIR = ../Binary/.build/QMK-Communicator |
17 | UI_DIR = ../Binary/.build/QMK-Communicator |
||
18 | MOC_DIR = ../Binary/.build/QMK-Communicator |
||
19 | RCC_DIR = ../Binary/.build/QMK-Communicator |
||
20 | RESOURCES += QMK-Communicator.qrc |
||
21 | SOURCES += main.cpp \ |
||
22 | ../Global/Class_Input/Input.cpp \ |
||
23 | ../Global/Class_Input/Input_TTY.cpp \ |
||
711 | KeyOz | 24 | ../Global/Class_Input/Input_TCP.cpp \ |
674 | KeyOz | 25 | ../Global/Class_HandlerMK/HandlerMK.cpp \ |
26 | ../Global/Class_HandlerIP/HandlerIP.cpp \ |
||
27 | Dialogs/dlg_Main.cpp \ |
||
28 | Classes/cSettings.cpp \ |
||
29 | Dialogs/dlg_Preferences.cpp \ |
||
30 | Dialogs/dlg_Terminal.cpp |
||
31 | HEADERS += Defines.h \ |
||
32 | ../Global/Kopter.h \ |
||
33 | ../Global/Class_Input/Input.h \ |
||
34 | ../Global/Class_Input/Input_TTY.h \ |
||
711 | KeyOz | 35 | ../Global/Class_Input/Input_TCP.h \ |
674 | KeyOz | 36 | ../Global/Class_HandlerMK/HandlerMK.h \ |
37 | ../Global/Class_HandlerIP/HandlerIP.h \ |
||
38 | Dialogs/dlg_Main.h \ |
||
39 | Classes/cSettings.h \ |
||
40 | TypeDefs.h \ |
||
41 | ../Global/Global.h \ |
||
42 | Dialogs/dlg_Preferences.h \ |
||
43 | Dialogs/dlg_Terminal.h |
||
44 | FORMS += Dialogs/dlg_Main.ui \ |
||
45 | Dialogs/dlg_Preferences.ui \ |
||
46 | Dialogs/dlg_Terminal.ui |