30 lines
544 B
Makefile
30 lines
544 B
Makefile
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
export QT_SELECT=5
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
|
|
override_dh_shlibdeps:
|
|
# Skip automatic shlib detection since we bundle Qt libraries
|
|
echo "Skipping automatic shlib detection"
|
|
|
|
override_dh_strip:
|
|
# Don't strip debug symbols if needed for debugging
|
|
dh_strip
|