-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgpilot.pro
More file actions
43 lines (27 loc) · 1016 Bytes
/
gpilot.pro
File metadata and controls
43 lines (27 loc) · 1016 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
TEMPLATE = subdirs
SUBDIRS = src/gpilot \
src/designerplugins \
src/vendor \
src/subapps
OTHER_FILES += scripts/*.py
# Make plugins translations
# system(qmake src/candleplugins/candleplugins.pro)
install_main.path = bin
install_main.files += $$OUT_PWD/src/gpilot/GPilot.exe
install_translations.path = bin/translations
install_translations.files = src/gpilot/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
install_grbl.path = bin
install_grbl.files = src/vendor/grblHal/grblHal.dll
install_fluidnc.path = bin
install_fluidnc.files = src/vendor/FluidNC/FluidNC.dll
INSTALLS += install_propertyeditor install_ucnc install_grbl install_fluidnc
INSTALLS += install_main
# install_translations install_license
# CONFIG += c++17
# QMAKE_CXXFLAGS += -std=c++17