This is Conan package for SObjectizer framework.
To use SObjectizer 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- Add SObjectizer to
conanfile.txtof your project:
[requires]
sobjectizer/5.5.24.3@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=missingPlease note that SObjectizer should be added to your CMakeLists.txt via find_package command:
...
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
find_package(sobjectizer)
...
target_link_libraries(your_target sobjectizer::SharedLib) # Or sobjectizer::StaticLibIf 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.