#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- \
		-DBUILD_CMSTEST=1 \
		-DCMAKE_BUILD_TYPE=Release \
		-DBINARY_PACKAGE_BUILD=1

override_dh_strip:
	dh_strip --dbg-package=darktable-dbg

.PHONY: override_dh_auto_configure override_dh_strip
