summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2020-02-13 13:20:35 +0100
committerEike Ziller <eike.ziller@qt.io>2020-02-13 13:14:01 +0000
commitaa577a71006332cfda084a1cc00d4c1580fbba3a (patch)
treed13cb46a70b3fd91fa9d54bbb92cd6f81cd7f9f5
parente9519db3d296c096cd266bf3f5712e92915f2f3f (diff)
Fix CMake build
Fix that compilation of the app did not find Qt headers pulled in via library headers Change-Id: I21c5104ae9ae58b7c5f55fe16e6723a9df9ebce8 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
-rw-r--r--app/CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt
index ee9397c..b96a2b0 100644
--- a/app/CMakeLists.txt
+++ b/app/CMakeLists.txt
@@ -1,7 +1,10 @@
add_qtc_library(perfparser_lib STATIC
ALLOW_ASCII_CASTS
- DEPENDS Qt5::Network
- PUBLIC_DEPENDS elfutils::dw elfutils::elf
+ PUBLIC_DEPENDS
+ Qt5::Core
+ Qt5::Network
+ elfutils::dw
+ elfutils::elf
PUBLIC_INCLUDES ./
SOURCES
perfaddresscache.cpp