File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
1414### Fixed
1515
16+ * ` CMAKE_MODULE_PATH ` changes are not propagated to the top-most project, when "CMake Scripts" is included by other project as a nested dependency.
1617* Release (_ version_ ) links in ` CHANGELOG.md ` .
1718
1819## [ v0.1.0] - 2025-02-13
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ option(RSP_ENABLE_ANSI "Enable ANSI output" false)
1515list (FIND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" has_cmake_scripts_module_path)
1616if (has_cmake_scripts_module_path EQUAL -1)
1717 list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" )
18+ set (CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH} " CACHE STRING " RSP CMake Scripts CMAKE_MODULE_PATH" FORCE)
19+
20+ message (WARNING "Caching CMAKE_MODULE_PATH. Please rebuild your project, if a failure occur." )
1821endif ()
1922
2023# Abort if building in-source
You can’t perform that action at this time.
0 commit comments