#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_configure:
	cmake -B build -D CMAKE_BUILD_TYPE=Release

override_dh_auto_build:
	cmake --build build --config Release

override_dh_auto_install:
	ls -laR
