From df8f379ac98ec8ddfafde57f211959e3073fc0de Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Fri, 15 Mar 2019 09:37:35 +0100 Subject: Switch to static libraries by default and ensure application rebuild when a library changes. I have not found a way how to pass additional CONFIG options to Debian package build (dpkg-buildpackage) when qmake is invoked from debian/rules with debian helper based (dh) build. The way how qmake solves dependencies between program and libraries comes from stone age. It is necessary to include complete path to the library in PRE_TARGETDEPS definition including lib prefix and .a suffix. This is non portable and cannot be easily used when static and dynamic libraries build alternatives are considered. Signed-off-by: Pavel Pisa --- qtmips_machine/tests/tests.pro | 2 ++ 1 file changed, 2 insertions(+) (limited to 'qtmips_machine/tests/tests.pro') diff --git a/qtmips_machine/tests/tests.pro b/qtmips_machine/tests/tests.pro index 9486a2c..d98b9d0 100644 --- a/qtmips_machine/tests/tests.pro +++ b/qtmips_machine/tests/tests.pro @@ -14,6 +14,8 @@ else:unix: LIBS_SUBDIR = . LIBS += -L$$OUT_PWD/../$${LIBS_SUBDIR} -lqtmips_machine -lelf +PRE_TARGETDEPS += $$OUT_PWD/../$${LIBS_SUBDIR}/libqtmips_machine.a + DOLAR=$ unix: LIBS += \ -- cgit v1.2.3