This is Conan package for so_5_extra library.
To use so_5_extra via Conan it is necessary to do the following steps:
- Add the corresponding remote to your conan:
conan remote add stiffstream https://api.bintray.com/conan/stiffstream/public
It can be also necessary to add public-conan remote:
conan remote add public-conan https://api.bintray.com/conan/bincrafters/public-conan
- Add so_5_extra to
conanfile.txt
of your project:
[requires]
so5extra/1.2.2@stiffstream/stable
It also may be necessary to specify shared
option for SObjectizer. For example, for build SObjectizer as a static library:
[options]
sobjectizer:shared=False
- Install dependencies for your project:
conan install SOME_PATH --build=missing
Please note that so_5_extra and SObjectizer should be added to your CMakeLists.txt via find_package
command:
...
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
find_package(sobjectizer CONFIG REQUIRED)
find_package(so5extra CONFIG REQUIRED)
...
target_link_libraries(your_target sobjectizer::SharedLib) # Or sobjectizer::StaticLib
target_link_libraries(your_target sobjectizer::so5extra)
If you have any questions about SObjectizer feel free to ask us via info at stiffstream dot com
.
If you have some problems with SObjectizer or this conan-recipe please open an issue.