Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/website/release-notes/iceoryx-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@
- Fix call to non-existing `getService` in channel.inl [#2426](https://github.com/eclipse-iceoryx/iceoryx/issues/2426)
- Fix chunk management race condition causing failed management allocation [#2440](https://github.com/eclipse-iceoryx/iceoryx/issues/2440)
- Fix compile error with GCC 8 [#2480](https://github.com/eclipse-iceoryx/iceoryx/issues/2480)
- Fix cmake cache inconsistency [#2485](https://github.com/eclipse-iceoryx/iceoryx/issues/2485)

**Refactoring:**

Expand Down
12 changes: 6 additions & 6 deletions iceoryx_meta/build_options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ option(IOX_ROUDI_DEFAULT_MONITORING_MODE "Enable roudi monitoring mode by defaul
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # "Create compile_commands.json file"

if(BUILD_ALL)
set(EXAMPLES ON)
set(BUILD_TEST ON)
set(INTROSPECTION ON)
set(BINDING_C ON)
set(EXAMPLES ON CACHE BOOL "" FORCE)
set(BUILD_TEST ON CACHE BOOL "" FORCE)
set(INTROSPECTION ON CACHE BOOL "" FORCE)
set(BINDING_C ON CACHE BOOL "" FORCE)
endif()

## must be before the BUILD_TEST check
if(COVERAGE AND NOT BUILD_TEST)
set(BUILD_TEST ON)
set(BUILD_TEST ON CACHE BOOL "" FORCE)
set(BUILD_TEST_HINT "${BUILD_TEST_HINT} (activated by COVERAGE=ON)")
endif()

if(BUILD_TEST AND NOT ROUDI_ENVIRONMENT)
set(ROUDI_ENV_HINT "${ROUDI_ENV_HINT} (activated by BUILD_TEST=ON)")
set(ROUDI_ENVIRONMENT ON)
set(ROUDI_ENVIRONMENT ON CACHE BOOL "" FORCE)
endif()

if(CCACHE)
Expand Down
Loading