FairLogger/debian/rules
2019-08-10 00:43:31 +02:00

16 lines
430 B
Makefile
Executable File

#!/usr/bin/make -f
# output every command that modifies files on the build system.
export DH_VERBOSE = 1
%:
dh $@ --builddirectory=build
override_dh_auto_configure:
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=OFF -DUSE_BOOST_PRETTY_FUNCTION=ON -DCMAKE_BUILD_TYPE=Release ..
override_dh_auto_build:
cd build && make
override_dh_auto_install:
cd build && make install DESTDIR=../debian/tmp