You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
@darobs The gateway needs the Condition API for the experimental Events stuff. So instead of introducing use_condition in our CMakeLists.txt, we should introduce a CMake option (OFF by default) to enable the Event system feature. If that flag is ON then we should:
Set use_condition=ON when we build c-utility, and
Build the event system stuff in our code
...otherwise set use_condition=OFF and don't build/use the event system.
damonbarry
changed the title
use_condition option is not being passed to submodules.
Make Event_System optional so gateway can build without Conditional library
Apr 27, 2017
Setting the cmake "enable_event_system" to OFF will disable the event system reporting (which uses the c-shared Condition code), and sets "use_condition" to OFF for the c-shared build.
dependencies.cmake:
There are more options in the root CMakeLists.txt that should be passed into this call, specifically "use_condition".
It would be even better if there was a more generic way to pass options down from top-level CmakeLists.txt to submodules.
The text was updated successfully, but these errors were encountered: