Rev 750 | 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 | |||
750 | KeyOz | 5 | include(../Global/Widget_Connection.pri) |
674 | KeyOz | 6 | |
7 | QT += network |
||
8 | TARGET = QMK-Settings |
||
9 | TEMPLATE = app |
||
10 | DESTDIR = ../Binary |
||
11 | |||
908 | - | 12 | TRANSLATIONS = $${TARGET}_en.ts \ |
13 | $${TARGET}_fr.ts |
||
14 | |||
674 | KeyOz | 15 | debug { |
16 | DEFINES += _BETA_ |
||
17 | } |
||
18 | |||
908 | - | 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 | RESOURCES += $${TARGET}.qrc |
||
36 | |||
674 | KeyOz | 37 | SOURCES += main.cpp \ |
38 | Dialogs/dlg_Main.cpp \ |
||
39 | Dialogs/dlg_MotorMixer.cpp \ |
||
750 | KeyOz | 40 | Dialogs/dlg_MotorTest.cpp \ |
674 | KeyOz | 41 | Classes/cSettings.cpp |
908 | - | 42 | |
674 | KeyOz | 43 | HEADERS += Defines.h \ |
44 | ../Global/Global.h \ |
||
45 | Dialogs/dlg_Main.h \ |
||
46 | Dialogs/dlg_MotorMixer.h \ |
||
750 | KeyOz | 47 | Dialogs/dlg_MotorTest.h \ |
674 | KeyOz | 48 | Classes/cSettings.h \ |
49 | TypeDefs.h |
||
908 | - | 50 | |
674 | KeyOz | 51 | FORMS += Dialogs/dlg_Main.ui \ |
750 | KeyOz | 52 | Dialogs/dlg_MotorMixer.ui \ |
53 | Dialogs/dlg_MotorTest.ui |