Cura-packaging/CuraEngine/rules

22 lines
522 B
Plaintext
Raw Normal View History

#!/usr/bin/make -f
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
DEB_PACKAGE_VERSION ?= $(shell dpkg-parsechangelog -SVersion | cut -f2 -d":" | cut -f1 -d"~")
%:
dh $@ --buildsystem=cmake --parallel
override_dh_auto_configure:
dh_auto_configure -- \
2016-10-19 20:59:11 +00:00
-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \
-DBUILD_TESTS:BOOL=OFF \
2019-04-20 21:36:46 +00:00
-DCURA_ENGINE_VERSION=${DEB_PACKAGE_VERSION}
override_dh_install:
dh_install --fail-missing
override_dh_auto_test:
2018-12-23 13:50:59 +00:00
dh_auto_test || true