Rev 674 | Rev 801 | 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 |
||
7 | DEFINES += _TTY_POSIX_ |
||
711 | KeyOz | 8 | |
9 | include(../Global/Class_SerialPort.pri) |
||
10 | |||
674 | KeyOz | 11 | DESTDIR = ../Binary |
12 | debug:DEFINES += _BETA_ |
||
13 | OBJECTS_DIR = ../Binary/.build/QMK-Communicator |
||
14 | UI_DIR = ../Binary/.build/QMK-Communicator |
||
15 | MOC_DIR = ../Binary/.build/QMK-Communicator |
||
16 | RCC_DIR = ../Binary/.build/QMK-Communicator |
||
17 | RESOURCES += QMK-Communicator.qrc |
||
18 | SOURCES += main.cpp \ |
||
19 | ../Global/Class_Input/Input.cpp \ |
||
20 | ../Global/Class_Input/Input_TTY.cpp \ |
||
711 | KeyOz | 21 | ../Global/Class_Input/Input_TCP.cpp \ |
674 | KeyOz | 22 | ../Global/Class_HandlerMK/HandlerMK.cpp \ |
23 | ../Global/Class_HandlerIP/HandlerIP.cpp \ |
||
24 | Dialogs/dlg_Main.cpp \ |
||
25 | Classes/cSettings.cpp \ |
||
26 | Dialogs/dlg_Preferences.cpp \ |
||
27 | Dialogs/dlg_Terminal.cpp |
||
28 | HEADERS += Defines.h \ |
||
29 | ../Global/Kopter.h \ |
||
30 | ../Global/Class_Input/Input.h \ |
||
31 | ../Global/Class_Input/Input_TTY.h \ |
||
711 | KeyOz | 32 | ../Global/Class_Input/Input_TCP.h \ |
674 | KeyOz | 33 | ../Global/Class_HandlerMK/HandlerMK.h \ |
34 | ../Global/Class_HandlerIP/HandlerIP.h \ |
||
35 | Dialogs/dlg_Main.h \ |
||
36 | Classes/cSettings.h \ |
||
37 | TypeDefs.h \ |
||
38 | ../Global/Global.h \ |
||
39 | Dialogs/dlg_Preferences.h \ |
||
40 | Dialogs/dlg_Terminal.h |
||
41 | FORMS += Dialogs/dlg_Main.ui \ |
||
42 | Dialogs/dlg_Preferences.ui \ |
||
43 | Dialogs/dlg_Terminal.ui |