summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/CMakeLists.txt7
-rw-r--r--app/main.cpp2
2 files changed, 6 insertions, 3 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
diff --git a/app/main.cpp b/app/main.cpp
index 3760148..5be1667 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -80,7 +80,7 @@ int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
app.setApplicationName(QLatin1String("perfparser"));
- app.setApplicationVersion(QLatin1String("4.11"));
+ app.setApplicationVersion(QLatin1String("4.12"));
if (qEnvironmentVariableIsSet("PERFPARSER_DEBUG_WAIT")) {
#ifdef Q_OS_LINUX