summaryrefslogtreecommitdiffstats
path: root/tests/auto/addresscache/addresscache.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2020-09-25 10:28:04 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2020-09-25 08:57:30 +0000
commit37720832aa0212c51cbd60f43dda7dc9a4f2f425 (patch)
treee73dae2608dde6e363ca04eaa022fe0e56299967 /tests/auto/addresscache/addresscache.qbs
parent269119290dfa92f17f9bf363623a11bc4f4b331e (diff)
tst_addresscache: Fix qbs build
While we're at it, also consider the ELFUTILS_INSTALL_DIR environment variable. Change-Id: Ifeb5cc7df6e29426633d27a840185ba67ed838b6 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tests/auto/addresscache/addresscache.qbs')
-rw-r--r--tests/auto/addresscache/addresscache.qbs8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/auto/addresscache/addresscache.qbs b/tests/auto/addresscache/addresscache.qbs
index d234288..9c8d0b3 100644
--- a/tests/auto/addresscache/addresscache.qbs
+++ b/tests/auto/addresscache/addresscache.qbs
@@ -7,7 +7,11 @@ QtcAutotest {
"../../../app/perfelfmap.cpp",
"../../../app/perfelfmap.h",
"../../../app/perfaddresscache.cpp",
- "../../../app/perfaddresscache.h"
+ "../../../app/perfaddresscache.h",
+ "../../../app/perfdwarfdiecache.cpp",
+ "../../../app/perfdwarfdiecache.h",
]
- cpp.includePaths: base.concat(["../../../app"])
+ cpp.includePaths: base.concat(["../../../app"]).concat(project.includePaths)
+ cpp.libraryPaths: project.libPaths
+ cpp.dynamicLibraries: ["dw", "elf"]
}