Skip to content

Commit

Permalink
Merge pull request #352 from nim65s/fix-cereal-link
Browse files Browse the repository at this point in the history
CMake: fix use of system cereal
  • Loading branch information
jcarpent committed Sep 3, 2024
2 parents 5bc2b9d + 515ce6c commit 4d90c3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

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

### Added
* 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))

### Changed

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


## [0.6.7] - 2024-08-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ add_test_cflags(
"-DTEST_SERIALIZATION_FOLDER=\\\\\"${CMAKE_CURRENT_BINARY_DIR}/serialization-data\\\\\""
)
if(cereal_FOUND)
target_link_libraries(${PROJECT_NAME}-test-cpp-serialization PRIVATE cereal)
target_link_libraries(${PROJECT_NAME}-test-cpp-serialization PRIVATE cereal::cereal)
else()
target_include_directories(
${PROJECT_NAME}-test-cpp-serialization SYSTEM
Expand Down

0 comments on commit 4d90c3d

Please sign in to comment.