Subversion Repositories Projects

Rev

Rev 801 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
801 - 1
# -------------------------------------------------
2
# Project created by QtCreator 2009-07-20T20:04:00
3
# -------------------------------------------------
4
 
5
include(../Global/Widget_Connection.pri)
6
 
7
QT += network
8
TARGET = QMK-Settings
9
TEMPLATE = app
10
DESTDIR = ../Binary
11
 
813 - 12
TRANSLATIONS = $${TARGET}_en.ts
13
 
801 - 14
debug {
15
  DEFINES += _BETA_
16
}
17
 
813 - 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/.
28
}
29
 
30
OBJECTS_DIR = ../Binary/.build/$${TARGET}
31
UI_DIR = ../Binary/.build/$${TARGET}
32
MOC_DIR = ../Binary/.build/$${TARGET}
33
RCC_DIR = ../Binary/.build/$${TARGET}
34
RESOURCES += $${TARGET}.qrc
35
 
801 - 36
SOURCES += main.cpp \
37
    Dialogs/dlg_Main.cpp \
38
    Dialogs/dlg_MotorMixer.cpp \
39
    Dialogs/dlg_MotorTest.cpp \
40
    Classes/cSettings.cpp
813 - 41
 
801 - 42
HEADERS += Defines.h \
43
    ../Global/Global.h \
44
    Dialogs/dlg_Main.h \
45
    Dialogs/dlg_MotorMixer.h \
46
    Dialogs/dlg_MotorTest.h \
47
    Classes/cSettings.h \
48
    TypeDefs.h
813 - 49
 
801 - 50
FORMS += Dialogs/dlg_Main.ui \
51
    Dialogs/dlg_MotorMixer.ui \
52
    Dialogs/dlg_MotorTest.ui