#!/usr/bin/make -f
# -*- makefile -*-

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure --buildsystem=cmake .. -- \
		-Denable_tests=$(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),OFF,ON) \
		-DENABLE_QT6:BOOL=ON

get-orig-source:
	uscan --noconf --force-download --rename --download-current-version --destdir=..
