-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTurnFixStatus.pro
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathTurnFixStatus.pro
File metadata and controls
51 lines (51 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
CONFIG -= debug_and_release
CONFIG += qt \
release \
uitools \
warn_on
DESTDIR += bin
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
MOC_DIR += build/moc
RCC_DIR += build/rcc
QT += sql \
xml \
network
RESOURCES += resources/TurnFixStatus.qrc
RC_FILE = turnfix.rc
HEADERS += src/global/header/_global.h \
src/widgets/header/wdg_wkstatus.h \
src/windows/header/win_statustool.h \
src/dialogs/others/header/dlg_tool_login.h \
src/libs/fparser/fptypes.hh \
src/libs/fparser/fpconfig.hh \
src/libs/fparser/fpaux.hh \
src/libs/fparser/fparser.hh
SOURCES += src/main_status.cpp \
src/global/_global.cpp \
src/widgets/wdg_wkstatus.cpp \
src/windows/win_statustool.cpp \
src/dialogs/others/dlg_tool_login.cpp \
src/libs/fparser/fparser.cc
macx {
TARGET = TurnFixStatusTool
ICON += resources/icon.icns
OBJECTS_DIR += build/o/mac
}
unix {
TARGET = turnfixstatustool
OBJECTS_DIR += build/o/unix
target.path += /usr/bin/
INSTALLS += target
}
win32 {
TARGET = TurnFixStatusTool
OBJECTS_DIR += build/o/win32
CONFIG -= debug_and_release
}
FORMS += src/windows/ui/win_statustool.ui \
src/widgets/ui/wdg_wkstatus.ui \
src/dialogs/others/ui/dlg_tool_login.ui
UI_DIR += build/ui