#!/usr/bin/make -f

# See debhelper(7) (uncomment to enable).
# Output every command that modifies files on the build system.

# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all optimize=-lto

export QT_SELECT := 5

# Explicitly enable hardening
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk

include /usr/share/dpkg/architecture.mk

# Retrieve version info
include /usr/share/dpkg/default.mk

VERSION = $(DEB_VERSION_UPSTREAM)

ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
  BUILD_DOC_OPTION := ON
else
  BUILD_DOC_OPTION := OFF
endif

#export DH_VERBOSE = 1


# See FEATURE AREAS in dpkg-buildflags(1).
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# See ENVIRONMENT in dpkg-buildflags(1).
# Package maintainers to append CFLAGS.
#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
# Package maintainers to append LDFLAGS.
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed


%:
	dh $@


# dh_make generated override targets.
# This is an example for Cmake (see <https://bugs.debian.org/641051>).
#override_dh_auto_configure:
#	dh_auto_configure -- \
#	-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)

override_dh_auto_configure:
	dh_auto_configure -- \
	        -DBUILD_EXAMPLES=OFF \
            -DBUILD_DOCS=$(BUILD_DOC_OPTION) \
            -DBUILD_WITH_SYSTEMD=ON \
			-DDTK_VERSION=$(VERSION) \
            $(NULL)

override_dh_installchangelogs:
	dh_installchangelogs -k CHANGELOG.md


ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
execute_after_dh_install:
	# Manually install .qch file when documentation is being built
	dh_install debian/tmp/usr/share/qt5/doc/dtkcore.qch /usr/share/qt5/doc/
endif