msgpack / msgpack-c

MessagePack implementation for C and C++ / msgpack.org[C/C++]
Other
3.03k stars 883 forks source link

Change CMake package name of C++ library to msgpackc-cxx #1045

Closed traversaro closed 1 year ago

traversaro commented 1 year ago

Change the CMake package name to msgpackc, as requested in https://github.com/msgpack/msgpack-c/issues/1043#issuecomment-1372169699 . After this change, to find the C library in the system, it is necessary to call:

find_package(msgpackc-cxx REQUIRED)

instead of the previously used:

find_package(msgpack REQUIRED)

Fix https://github.com/msgpack/msgpack-c/issues/1043 .