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

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

CMAKE_ARGS = -G Ninja
%:
	dh $@ --with pkgkde_symbolshelper

execute_after_dh_auto_clean:
	rm -rf
	#rm -rf build-Qt6

override_dh_auto_configure:
	dh_auto_configure -- $(CMAKE_ARGS)
	#dh_auto_configure --builddirectory=build-Qt6 -- $(CMAKE_ARGS)

override_dh_auto_build:
	dh_auto_build
	#dh_auto_build --builddirectory=build-Qt6

override_dh_auto_install:
	dh_auto_install
	#dh_auto_install --builddirectory=build-Qt6

execute_after_dh_install-indep:
	

override_dh_auto_test:
	dh_auto_test --no-parallel
	#dh_auto_test --no-parallel --builddirectory=build-Qt6
