File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
99### Added
1010- Add compatibility with jrl-cmakemodules workspace ([ #485 ] ( https://github.com/stack-of-tasks/eigenpy/pull/485 ) )
1111
12+ ### Fixed
13+ - Remove CMake CMP0167 warnings ([ #487 ] ( https://github.com/stack-of-tasks/eigenpy/pull/487 ) )
14+
1215## [ 3.7.0] - 2024-06-11
1316
1417### Added
Original file line number Diff line number Diff line change @@ -68,6 +68,11 @@ option(SUFFIX_SO_VERSION "Suffix library name with its version" OFF)
6868option (BUILD_TESTING_SCIPY
6969 "Build the SciPy tests (scipy should be installed on the machine)" ON )
7070
71+ # Use BoostConfig module distributed by boost library instead of using FindBoost
72+ # module distributed by CMake
73+ if (POLICY CMP0167)
74+ cmake_policy (SET CMP0167 NEW)
75+ endif ()
7176include ("${JRL_CMAKE_MODULES} /base.cmake" )
7277compute_project_args(PROJECT_ARGS LANGUAGES CXX)
7378project (${PROJECT_NAME} ${PROJECT_ARGS} )
You can’t perform that action at this time.
0 commit comments