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
|
#!/usr/bin/make -f
ifeq (,$(filter terse,${DEB_BUILD_OPTIONS}))
export DH_VERBOSE=1
export V=1
export VERBOSE=1
endif
LC_ALL:=C
export LC_ALL
TZ:=UTC
export TZ
shellescape='$(subst ','\'',$(1))'
shellexport=$(1)=$(call shellescape,${$(1)})
include /usr/share/dpkg/architecture.mk
include /usr/share/dpkg/buildtools.mk
OUR_CXXFLAGS:= -Wno-deprecated-declarations
ifneq (,$(filter debug,${DEB_BUILD_OPTIONS}))
OUR_CXXFLAGS+= -Og -g3
endif
dpkgbuildflagsmkescape=$(subst \,\\\,$(1))
export DEB_BUILD_MAINT_OPTIONS := hardening=+all optimize=-lto
export DEB_CXXFLAGS_MAINT_APPEND:=$(call dpkgbuildflagsmkescape,${OUR_CXXFLAGS})
include /usr/share/dpkg/default.mk
%:
dh $@ --buildsystem=cmake
override_dh_auto_configure:
dh_auto_configure --buildsystem=cmake -- \
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|