Rev 674 | Rev 801 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 674 | Rev 711 | ||
---|---|---|---|
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 |
7 | DEFINES += _TTY_POSIX_ |
7 | DEFINES += _TTY_POSIX_ |
- | 8 | ||
- | 9 | include(../Global/Class_SerialPort.pri) |
|
- | 10 | ||
8 | DESTDIR = ../Binary |
11 | DESTDIR = ../Binary |
9 | debug:DEFINES += _BETA_ |
12 | debug:DEFINES += _BETA_ |
10 | OBJECTS_DIR = ../Binary/.build/QMK-Communicator |
13 | OBJECTS_DIR = ../Binary/.build/QMK-Communicator |
11 | UI_DIR = ../Binary/.build/QMK-Communicator |
14 | UI_DIR = ../Binary/.build/QMK-Communicator |
12 | MOC_DIR = ../Binary/.build/QMK-Communicator |
15 | MOC_DIR = ../Binary/.build/QMK-Communicator |
13 | RCC_DIR = ../Binary/.build/QMK-Communicator |
16 | RCC_DIR = ../Binary/.build/QMK-Communicator |
14 | RESOURCES += QMK-Communicator.qrc |
17 | RESOURCES += QMK-Communicator.qrc |
15 | SOURCES += main.cpp \ |
18 | SOURCES += main.cpp \ |
16 | ../Global/Class_Input/Input.cpp \ |
19 | ../Global/Class_Input/Input.cpp \ |
17 | ../Global/Class_Input/Input_TTY.cpp \ |
20 | ../Global/Class_Input/Input_TTY.cpp \ |
- | 21 | ../Global/Class_Input/Input_TCP.cpp \ |
|
18 | ../Global/Class_HandlerMK/HandlerMK.cpp \ |
22 | ../Global/Class_HandlerMK/HandlerMK.cpp \ |
19 | ../Global/Class_HandlerIP/HandlerIP.cpp \ |
23 | ../Global/Class_HandlerIP/HandlerIP.cpp \ |
20 | ../Global/Class_SerialPort/qextserialbase.cpp \ |
- | |
21 | ../Global/Class_SerialPort/qextserialport.cpp \ |
- | |
22 | ../Global/Class_SerialPort/ManageSerialPort.cpp \ |
- | |
23 | Dialogs/dlg_Main.cpp \ |
24 | Dialogs/dlg_Main.cpp \ |
24 | Classes/cSettings.cpp \ |
25 | Classes/cSettings.cpp \ |
25 | Dialogs/dlg_Preferences.cpp \ |
26 | Dialogs/dlg_Preferences.cpp \ |
26 | Dialogs/dlg_Terminal.cpp |
27 | Dialogs/dlg_Terminal.cpp |
27 | win32:SOURCES += ../Global/Class_SerialPort/win_qextserialport.cpp |
- | |
28 | unix:SOURCES += ../Global/Class_SerialPort/posix_qextserialport.cpp |
- | |
29 | HEADERS += Defines.h \ |
28 | HEADERS += Defines.h \ |
30 | ../Global/Kopter.h \ |
29 | ../Global/Kopter.h \ |
31 | ../Global/Class_Input/Input.h \ |
30 | ../Global/Class_Input/Input.h \ |
32 | ../Global/Class_Input/Input_TTY.h \ |
31 | ../Global/Class_Input/Input_TTY.h \ |
- | 32 | ../Global/Class_Input/Input_TCP.h \ |
|
33 | ../Global/Class_HandlerMK/HandlerMK.h \ |
33 | ../Global/Class_HandlerMK/HandlerMK.h \ |
34 | ../Global/Class_HandlerIP/HandlerIP.h \ |
34 | ../Global/Class_HandlerIP/HandlerIP.h \ |
35 | ../Global/Class_SerialPort/qextserialbase.h \ |
- | |
36 | ../Global/Class_SerialPort/qextserialport.h \ |
- | |
37 | ../Global/Class_SerialPort/ManageSerialPort.h \ |
- | |
38 | Dialogs/dlg_Main.h \ |
35 | Dialogs/dlg_Main.h \ |
39 | Classes/cSettings.h \ |
36 | Classes/cSettings.h \ |
40 | TypeDefs.h \ |
37 | TypeDefs.h \ |
41 | ../Global/Global.h \ |
38 | ../Global/Global.h \ |
42 | Dialogs/dlg_Preferences.h \ |
39 | Dialogs/dlg_Preferences.h \ |
43 | Dialogs/dlg_Terminal.h |
40 | Dialogs/dlg_Terminal.h |
44 | win32:HEADERS += ../Global/Class_SerialPort/win_qextserialport.h |
- | |
45 | unix:HEADERS += ../Global/Class_SerialPort/posix_qextserialport.h |
- | |
46 | FORMS += Dialogs/dlg_Main.ui \ |
41 | FORMS += Dialogs/dlg_Main.ui \ |
47 | Dialogs/dlg_Preferences.ui \ |
42 | Dialogs/dlg_Preferences.ui \ |
48 | Dialogs/dlg_Terminal.ui |
43 | Dialogs/dlg_Terminal.ui |