#!/usr/bin/make -f
export DH_VERBOSE = 1
export DEB_BUILD_OPTIONS += noautodbgsym

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DWANT_DEBUG=OFF \
		-DWANT_SHARED=OFF \
		-DWANT_QT6=ON \
		-DWANT_ALSA=ON \
		-DWANT_JACK=ON \
		-DWANT_PORTAUDIO=ON \
		-DWANT_PORTMIDI=ON \
		-DWANT_PULSEAUDIO=ON \
		-DWANT_CPPUNIT=ON \
		-DWANT_LADSPA=ON \
		-DWANT_LRDF=ON \
		-DWANT_RUBBERBAND=ON \
		-DWANT_OSC=ON
