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
|
#!/usr/bin/make -f
# Skip false positive at test/container_conversion.cpp:39
# See https://bugs.debian.org/926218
export DEB_CXXFLAGS_MAINT_APPEND = -Wno-error=maybe-uninitialized
EXTRA_CMAKE_VARIABLES = \
CMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON \
RANGES_NATIVE=OFF \
RANGES_VERBOSE_BUILD=ON
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- $(EXTRA_CMAKE_VARIABLES:%=-D%)
# Range-v3 is header library so we should make only online documentation unless
# the `nodoc` flag is specified.
override_dh_auto_build:
ifeq (,$(filter nodoc, $(DEB_BUILD_OPTIONS)))
dh_auto_build -- doc
endif
# The `test` target doesn't compile tests by itself and fails if they aren't
# built before.
override_dh_auto_test:
ifeq (,$(filter nocheck, $(DEB_BUILD_OPTIONS)))
dh_auto_build
dh_auto_test
endif
|