Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update msgpack to v4.1.3 #644

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/packages/pkg/msgpack.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ msgpack
- Added by `Antal Tátrai <https://github.com/tatraian>`__
(`pr-406 <https://github.com/ruslo/hunter/pull/406>`__)
- Available since |hunter|
- Target library name is now changed from "msgpack::msgpack" to "msgpackc-cxx"
NeroBurner marked this conversation as resolved.
Show resolved Hide resolved

.. code-block:: cmake

hunter_add_package(msgpack)
find_package(msgpack CONFIG REQUIRED)
target_link_libraries(... msgpackc-cxx)
target_link_libraries(... PRIVATE msgpackc-cxx)
2 changes: 1 addition & 1 deletion examples/msgpack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ set (CMAKE_CXX_STANDARD 11)
find_package(msgpack CONFIG REQUIRED)

add_executable(container container.cpp)
target_link_libraries(container msgpackc-cxx)
target_link_libraries(container PRIVATE msgpackc-cxx)