From 835c84fc0702d4f97053df99d40dec107fb6e888 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Fri, 12 Mar 2021 22:32:06 +0100 Subject: [PATCH] Add missing cmake include This happens to work sometimes since it's included ina subfolder --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd4a0529..f200f6e1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,7 @@ find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake) include(ECMInstallIcons) +include(ECMPackageConfigHelpers) include(KDEInstallDirs) include(KDECMakeSettings) include(KDECompilerSettings NO_POLICY_SCOPE)