Conan package for json_dto library
To use json_dto via Conan the following steps are necessary:
- Add the corresponding remote to your conan:
conan remote add stiffstream https://api.bintray.com/conan/stiffstream/public
- Add json_dto to your
conanfile.txt
/conanfile.py
:
[requires]
json-dto/0.2.8@stiffstream/stable
- Install dependencies for your project:
conan install PROJECT_PATH --build=missing
One of the following approaches can be used:
# 1. Find and add dependency.
find_package(json_dto CONFIG REQUIRED)
target_link_libraries(your_target json-dto::json-dto)
# 2. Setting up dependencies with Conan
target_link_libraries(your_target ${CONAN_LIBS})
If you have any questions about json_dto or its Conan package
feel free to ask us on [email protected]
.