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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE = 1
# Hardening options.
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
BUILD_OPTIONS = \
-DBUILD_SHARED_LIBS=ON \
-DOPTION_SELF_CONTAINED=OFF \
-DOPTION_BUILD_GPU_TESTS=OFF \
-DOPTION_BUILD_EXAMPLES=OFF
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
BUILD_OPTIONS += -DOPTION_BUILD_TESTS=ON
else
BUILD_OPTIONS += -DOPTION_BUILD_TESTS=OFF
endif
%:
dh $@ --buildsystem=cmake
override_dh_auto_configure-arch:
dh_auto_configure -- $(BUILD_OPTIONS) -DOPTION_BUILD_DOCS=OFF
override_dh_auto_configure-indep:
dh_auto_configure -- $(BUILD_OPTIONS) -DOPTION_BUILD_DOCS=ON
override_dh_installdocs-indep:
dh_installdocs --indep
dh_doxygen --indep
|