#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1

%:
	dh $@

	# cp /usr/src/packages/SOURCES/juce_VSTInterface.h libs/JUCE/modules/juce_audio_processors/format_types/

override_dh_auto_configure:
	cmake -Bcmake-build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
	# -DBESPOKE_VST2_SDK_LOCATION=/usr/local/include
override_dh_auto_build:
	cmake --build cmake-build --config Release

 override_dh_auto_install:
	cmake --install cmake-build --prefix debian/bespokesynth/usr
