Subversion Repositories Projects

Rev

Rev 801 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 801 Rev 813
Line 7... Line 7...
7
QT += network
7
QT += network
8
TARGET = QMK-Settings
8
TARGET = QMK-Settings
9
TEMPLATE = app
9
TEMPLATE = app
10
DESTDIR = ../Binary
10
DESTDIR = ../Binary
Line -... Line 11...
-
 
11
 
-
 
12
TRANSLATIONS = $${TARGET}_en.ts
11
 
13
 
12
debug {
14
debug {
13
  DEFINES += _BETA_
15
  DEFINES += _BETA_
Line -... Line 16...
-
 
16
}
-
 
17
 
-
 
18
# Mac specific stuff
-
 
19
macx:{
-
 
20
    LIBS    += /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
-
 
21
    ICON = ../Global/Images/Icons/$${TARGET}.icns
-
 
22
    QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/$${TARGET}.app/Contents/MacOS/.
-
 
23
}
-
 
24
 
-
 
25
# And other
-
 
26
!macx:{
-
 
27
    QMAKE_POST_LINK = cp ../$${TARGET}/*.qm ../Binary/.
14
}
28
}
15
 
29
 
16
OBJECTS_DIR = ../Binary/.build/QMK-Settings
30
OBJECTS_DIR = ../Binary/.build/$${TARGET}
17
UI_DIR = ../Binary/.build/QMK-Settings
31
UI_DIR = ../Binary/.build/$${TARGET}
18
MOC_DIR = ../Binary/.build/QMK-Settings
32
MOC_DIR = ../Binary/.build/$${TARGET}
-
 
33
RCC_DIR = ../Binary/.build/$${TARGET}
19
RCC_DIR = ../Binary/.build/QMK-Settings
34
RESOURCES += $${TARGET}.qrc
20
RESOURCES += QMK-Settings.qrc
35
 
21
SOURCES += main.cpp \
36
SOURCES += main.cpp \
22
    Dialogs/dlg_Main.cpp \
37
    Dialogs/dlg_Main.cpp \
23
    Dialogs/dlg_MotorMixer.cpp \
38
    Dialogs/dlg_MotorMixer.cpp \
-
 
39
    Dialogs/dlg_MotorTest.cpp \
24
    Dialogs/dlg_MotorTest.cpp \
40
    Classes/cSettings.cpp
25
    Classes/cSettings.cpp
41
 
26
HEADERS += Defines.h \
42
HEADERS += Defines.h \
27
    ../Global/Global.h \
43
    ../Global/Global.h \
28
    Dialogs/dlg_Main.h \
44
    Dialogs/dlg_Main.h \
29
    Dialogs/dlg_MotorMixer.h \
45
    Dialogs/dlg_MotorMixer.h \
30
    Dialogs/dlg_MotorTest.h \
46
    Dialogs/dlg_MotorTest.h \
-
 
47
    Classes/cSettings.h \
31
    Classes/cSettings.h \
48
    TypeDefs.h
32
    TypeDefs.h
49
 
33
FORMS += Dialogs/dlg_Main.ui \
50
FORMS += Dialogs/dlg_Main.ui \