-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathBBIOConfig.pro
More file actions
42 lines (29 loc) · 896 Bytes
/
BBIOConfig.pro
File metadata and controls
42 lines (29 loc) · 896 Bytes
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
TEMPLATE = app
TARGET = bbioconfig
QT += qml quick widgets
QT -= network
SOURCES += main.cpp \
fileio.cpp
HEADERS += \
fileio.h
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
windows: {
RC_FILE = icon.rc
}
macx: {
QMAKE_INFO_PLIST = mac_Info.plist
ICON = $$PWD/icons/$${TARGET}.icns
QMAKE_POST_LINK += $$QMAKE_COPY $$PWD/$${QMAKE_INFO_PLIST} $${TARGET}.app/Contents/Info.plist $$escape_expand(\n\t)
QMAKE_POST_LINK += $$QMAKE_COPY $$ICON $${TARGET}.app/Contents/Resources/machinekit.icns
}
# Default rules for deployment.
include(deployment.pri)
PREFIX = /usr
target.path = $$PREFIX/bin
desktop.path = $$PREFIX/share/applications
desktop.files = $$PWD/misc/$${TARGET}.desktop
icon.path = $$PREFIX/share/pixmaps
icon.files = $$PWD/icons/$${TARGET}.png
INSTALLS += target desktop icon