Merge pull request #1142 from uyha/cpp_master

Fixed `find_package` command in README
This commit is contained in:
Takatoshi Kondo
2025-02-21 17:04:36 +09:00
committed by GitHub

View File

@@ -87,7 +87,6 @@ For C++ compiler
clang++ -DMSGPACK_NO_BOOST your_code.cpp
```
Usage
-----
@@ -96,7 +95,7 @@ Usage
```cmake
# ...
find_package(msgpack REQUIRED)
find_package(msgpack-cxx REQUIRED)
# ...
target_link_libraries(your_target_name <PRIVATE/PUBLIC/INTERFACE> msgpack-cxx)
# ...