Skip to content

Commit 4d90c3d

Browse files
authored
Merge pull request #352 from nim65s/fix-cereal-link
CMake: fix use of system cereal
2 parents 5bc2b9d + 515ce6c commit 4d90c3d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9-
### Added
9+
### Fixed
10+
* CMake: Fix link to system cereal in tests ([#353](https://github.com/Simple-Robotics/proxsuite/pull/352))
1011

12+
### Added
1113
* Stub files for Python bindings, using [nanobind's native support](https://nanobind.readthedocs.io/en/latest/typing.html#stub-generation) ([#340](https://github.com/Simple-Robotics/proxsuite/pull/340))
1214

1315
### Changed
14-
1516
* Change Python bindings to use nanobind instead of pybind11 ([#340](https://github.com/Simple-Robotics/proxsuite/pull/340))
1617

18+
1719
## [0.6.7] - 2024-08-27
1820

1921
### Added

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ add_test_cflags(
6565
"-DTEST_SERIALIZATION_FOLDER=\\\\\"${CMAKE_CURRENT_BINARY_DIR}/serialization-data\\\\\""
6666
)
6767
if(cereal_FOUND)
68-
target_link_libraries(${PROJECT_NAME}-test-cpp-serialization PRIVATE cereal)
68+
target_link_libraries(${PROJECT_NAME}-test-cpp-serialization PRIVATE cereal::cereal)
6969
else()
7070
target_include_directories(
7171
${PROJECT_NAME}-test-cpp-serialization SYSTEM

0 commit comments

Comments
 (0)