#!/usr/bin/make -f

%:
	dh $@ --buildsystem=cmake

# Disable fuzztest not packaged in Debian
# Disable Python venv which is not needed without the disabled tests
override_dh_auto_configure:
	dh_auto_configure -- \
		-DMINJA_FUZZTEST_ENABLED=OFF \
		-DMINJA_EXAMPLE_ENABLED=OFF \
		-DMINJA_USE_VENV=OFF
