https://bugs.kde.org/show_bug.cgi?id=381653
--- Comment #9 from Christoph Feck <cf...@kde.org> --- Could you please verify if it works correctly when you (after git checkout step) move the three 'include' lines above the 'find_package' lines in CMakeLists.txt, and build it again with the subsequent steps? diff --git a/CMakeLists.txt b/CMakeLists.txt index f5f2ea2..dc8c20a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,16 +10,16 @@ set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules ) +include (KDEInstallDirs) +include (KDECMakeSettings) +include (KDECompilerSettings) + find_package (Qt5 REQUIRED CONFIG COMPONENTS Core Gui Widgets) find_package (KF5 REQUIRED COMPONENTS Config CoreAddons I18n WidgetsAddons) find_package (KDecoration2 REQUIRED) find_package (GLIB2 REQUIRED) find_package (Cairo REQUIRED) -include (KDEInstallDirs) -include (KDECMakeSettings) -include (KDECompilerSettings) - include_directories ( ${CMAKE_BINARY_DIR} ${CAIRO_INCLUDE_DIRS} -- You are receiving this mail because: You are watching all bug changes.