diff options
author | Friedrich W. H. Kossebau <kossebau@kde.org> | 2022-06-01 23:09:19 +0200 |
---|---|---|
committer | Friedrich W. H. Kossebau <kossebau@kde.org> | 2022-06-01 23:09:19 +0200 |
commit | eaca16179698b59bdc6a54005f86e020aa9a575b (patch) | |
tree | 3bca6146de6662d0507afed6739f3ea4a520cd87 | |
parent | 79caa00d0949138b237ecced794a903237bcf2b5 (diff) | |
download | extra-cmake-modules-eaca16179698b59bdc6a54005f86e020aa9a575b.tar.gz extra-cmake-modules-eaca16179698b59bdc6a54005f86e020aa9a575b.tar.bz2 |
ECMAddQtDesignerPlugin: fix missing FeatureSummary include
The use of set_package_properties() requires the include, which might
not have been done by the macro consumer.
-rw-r--r-- | modules/ECMAddQtDesignerPlugin.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/ECMAddQtDesignerPlugin.cmake b/modules/ECMAddQtDesignerPlugin.cmake index 72dc683f..8c638f4f 100644 --- a/modules/ECMAddQtDesignerPlugin.cmake +++ b/modules/ECMAddQtDesignerPlugin.cmake @@ -179,6 +179,7 @@ Since 5.62.0. #]=======================================================================] include(CMakeParseArguments) +include(FeatureSummary) include(${CMAKE_CURRENT_LIST_DIR}/QtVersionOption.cmake) # helper method |