File tree Expand file tree Collapse file tree 4 files changed +1579
-1464
lines changed Expand file tree Collapse file tree 4 files changed +1579
-1464
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
### Added
14
14
- Add compatibility with jrl-cmakemodules workspace ([ #2 ] ( https://github.com/Simple-Robotics/LoIK/pull/2 ) )
15
15
16
+ ### Fixed
17
+ - Remove CMake CMP0167 warnings ([ #7 ] ( https://github.com/Simple-Robotics/LoIK/pull/7 ) )
18
+
16
19
## [ 1.0.0] - 2024-07-17
17
20
18
21
### Added
Original file line number Diff line number Diff line change @@ -55,6 +55,11 @@ endif()
55
55
set (DOXYGEN_USE_MATHJAX YES )
56
56
set (DOXYGEN_USE_TEMPLATE_CSS YES )
57
57
58
+ # Use BoostConfig module distributed by boost library instead of using FindBoost module distributed
59
+ # by CMake
60
+ if (POLICY CMP0167)
61
+ cmake_policy (SET CMP0167 NEW)
62
+ endif ()
58
63
include (${JRL_CMAKE_MODULES} /base.cmake)
59
64
compute_project_args(PROJECT_ARGS LANGUAGES CXX)
60
65
project (${PROJECT_NAME} ${PROJECT_ARGS} )
You can’t perform that action at this time.
0 commit comments