#!/usr/bin/make -f

# lots of warnings due to deprecated APIs, and to missing override in old INDI
# headers, so disable them for now
export DEB_CXXFLAGS_MAINT_APPEND = -Wno-deprecated -Wno-deprecated-declarations -Wno-overloaded-virtual

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -Skf5 -- -DBUILD_TESTING=OFF

execute_after_dh_auto_install:
	# remove development stuff
	find debian/tmp -name '*.a' -delete

.PHONY: override_dh_auto_test
