From f7ee41ba61569d2cfec6ded18baedfb7876a97fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Ondr=C3=A1=C4=8Dek?= Date: Wed, 25 Feb 2026 20:36:45 +0100 Subject: [PATCH] CMake: fix CMAKE_MODULE_PATH extension declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roman Ondráček --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ab2143bb..408b4efe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ message(STATUS "CMake version: " ${CMAKE_VERSION}) message(STATUS "CMake system name: " ${CMAKE_SYSTEM_NAME}) set(CMAKE_SCRIPTS "${PROJECT_SOURCE_DIR}/cmake") -set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/modules") +list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/modules") ## Project Version ## Previously we read in the version from these files, but now we use the