#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

# Build only the Qt 6 (DTK6) plugins; the Qt 5 (DTK5) variant is not
# built by this source package.
override_dh_auto_configure:
	dh_auto_configure -- \
		-DDTK5=OFF \
		-DBUILD_TESTING=OFF

override_dh_installchangelogs:
	dh_installchangelogs -k CHANGELOG.md
