Skip to content
Merged
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
6 changes: 3 additions & 3 deletions rclcpp_async/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ target_link_libraries(${PROJECT_NAME} INTERFACE
)
target_compile_features(${PROJECT_NAME} INTERFACE cxx_std_20)

if(CMAKE_COMPILER_IS_GNUCXX)
target_compile_options(${PROJECT_NAME} INTERFACE -fcoroutines)
endif()
# Note: -fcoroutines is NOT propagated via INTERFACE to avoid polluting
# compile_commands.json for clang-tidy. Consumers using GCC < 14 must add
# -fcoroutines themselves (e.g. via add_compile_options or pfr_package).

install(
DIRECTORY include/
Expand Down
Loading