forked from Denvi/Candle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcandle.pro
36 lines (23 loc) · 815 Bytes
/
candle.pro
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
TEMPLATE = subdirs
SUBDIRS = src/candle \
src/designerplugins \
src/vendor
OTHER_FILES += scripts/*.py
# Make plugins translations
# system(qmake src/candleplugins/candleplugins.pro)
install_main.path = bin
install_main.files += $$OUT_PWD/src/candle/GPilot.exe
install_translations.path = bin/translations
install_translations.files = src/candle/translations/*
install_license.path = bin
install_license.files = LICENSE
install_propertyeditor.path = bin
install_propertyeditor.files = src/vendor/PropertyEditor/PropertyEditor.dll
install_ucnc.path = bin
install_ucnc.files = src/vendor/uCNC/uCNC.dll
INSTALLS += install_propertyeditor install_ucnc
INSTALLS += install_main
# install_ucnc
# install_translations install_license
# CONFIG += c++17
# QMAKE_CXXFLAGS += -std=c++17