Skip to content

Conan package for so_5_extra extension for SObjectizer framework

License

Notifications You must be signed in to change notification settings

Stiffstream/so5extra-conan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

so5extra-conan

This is Conan package for so_5_extra library.

How To Use

Installing Via Conan

To use so_5_extra via Conan it is necessary to do the following steps:

  1. 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  
  1. 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
  1. Install dependencies for your project:
conan install SOME_PATH --build=missing

Adding so_5_extra To Your CMakeLists.txt

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)

Some Notes

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.

About

Conan package for so_5_extra extension for SObjectizer framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages