diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-08 13:42:28 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-08 13:42:28 +0100 |
commit | 66af7423e1a3df332f9c62992f92639cead987b0 (patch) | |
tree | 7b272a1a1442c68990539a165f9f86c519a08bd2 /examples | |
parent | 5b84c106dd8af8f0be14fd8a8efd3b3dd9ef2c25 (diff) | |
parent | af5a57545d9aa5493790798b77364f3c923eb337 (diff) | |
download | qmenumodel-66af7423e1a3df332f9c62992f92639cead987b0.tar.gz qmenumodel-66af7423e1a3df332f9c62992f92639cead987b0.tar.bz2 qmenumodel-66af7423e1a3df332f9c62992f92639cead987b0.zip |
Merge branch 'tari01-pr/fix-qt5-use-modules-warning'
Attributes GH PR #14: https://github.com/AyatanaIndicators/qmenumodel/pull/14
Diffstat (limited to 'examples')
-rw-r--r-- | examples/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 028c6ef..67e1348 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -14,7 +14,6 @@ pkg_check_modules(QMENUMODEL REQUIRED qmenumodel) add_executable(info-menumodel info-menumodel.cpp) -qt5_use_modules(info-menumodel Core) include_directories(${QMENUMODEL_INCLUDE_DIRS}) -target_link_libraries(info-menumodel ${QMENUMODEL_LDFLAGS}) +target_link_libraries(info-menumodel ${QMENUMODEL_LDFLAGS} Qt5::Core) |