summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks
diff options
context:
space:
mode:
authorRainer Keller <rainer.keller@digia.com>2014-07-09 14:10:37 +0200
committerRainer Keller <rainer.keller@digia.com>2014-07-10 08:10:52 +0200
commit5835407df13ecfd8d313eb2b8fc216f8cfe1f9e5 (patch)
treeba2a2331d1b6c0d82cd89e9dc337ac37ab4a6b95 /tests/benchmarks
parent72024fd50cdead8d890886dba32fd81ac54ff3ae (diff)
Check for boost header in sysroot
The check has to detect if boost header is present in the system we are building for. Change-Id: I700a11df208c8852ba094d8bff387ad21fa309b2 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'tests/benchmarks')
-rw-r--r--tests/benchmarks/corelib/tools/qregexp/qregexp.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/benchmarks/corelib/tools/qregexp/qregexp.pro b/tests/benchmarks/corelib/tools/qregexp/qregexp.pro
index 74544519f3..d194d2b698 100644
--- a/tests/benchmarks/corelib/tools/qregexp/qregexp.pro
+++ b/tests/benchmarks/corelib/tools/qregexp/qregexp.pro
@@ -11,7 +11,7 @@ qtHaveModule(script):!pcre {
QT += script
}
-exists( /usr/include/boost/regex.hpp ){
+exists($$[QT_SYSROOT]/usr/include/boost/regex.hpp) {
DEFINES+=HAVE_BOOST
LIBS+=-lboost_regex
}