summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@pelagicore.com>2016-09-26 02:35:54 +0200
committerRobert Griebl <robert.griebl@pelagicore.com>2016-10-17 21:43:52 +0000
commit21ae572d2152bd52096aef759534a803b98eb50d (patch)
treee8c7c6c4136f8348f312c0f450c3932e07df9a18 /config.tests
parentd475d73d9f292cf26e6cd1c6284a0da3efd69d09 (diff)
Reimplemented build-system as a real Qt module
This should help with doc generation and actually running the unit-tests in the CI system. Please note that the binaries are now installed into $$[QT_INSTALL_BINS] Change-Id: I6f27ba39f8e5d923e1aeff550ba11c1fbd8ac5cf Reviewed-by: Robert Griebl <robert.griebl@pelagicore.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/libcrypto/libcrypto.pro5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.tests/libcrypto/libcrypto.pro b/config.tests/libcrypto/libcrypto.pro
index 64ce4aef..43ef8a97 100644
--- a/config.tests/libcrypto/libcrypto.pro
+++ b/config.tests/libcrypto/libcrypto.pro
@@ -5,6 +5,7 @@ CONFIG += console
SOURCES += main.cpp
linux:packagesExist("'libcrypto >= 1.0.1'") {
- PKGCONFIG += libcrypto
- CONFIG *= link_pkgconfig
+ PKGCONFIG_INCLUDEPATH = $$system($$pkgConfigExecutable() --cflags-only-I libcrypto)
+ PKGCONFIG_INCLUDEPATH ~= s/^-I(.*)/\\1/g
+ INCLUDEPATH += $$PKGCONFIG_INCLUDEPATH
}