cmake_minimum_required(VERSION 3.20) project(examples_rclcpp_minimal_publisher) # Default to C++17 if(NOT CMAKE_CXX_STANDARD) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) endif() if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options(-Wall -Wextra -Wpedantic) endif() find_package(ament_cmake REQUIRED) find_package(rclcpp REQUIRED) find_package(std_msgs REQUIRED) add_executable(publisher_lambda lambda.cpp) target_link_libraries(publisher_lambda PRIVATE rclcpp::rclcpp std_msgs::std_msgs) add_executable(publisher_member_function member_function.cpp) target_link_libraries(publisher_member_function PRIVATE rclcpp::rclcpp std_msgs::std_msgs) add_executable(publisher_member_function_with_type_adapter member_function_with_type_adapter.cpp) target_link_libraries(publisher_member_function_with_type_adapter PRIVATE rclcpp::rclcpp std_msgs::std_msgs) add_executable(publisher_member_function_with_unique_network_flow_endpoints member_function_with_unique_network_flow_endpoints.cpp) target_link_libraries(publisher_member_function_with_unique_network_flow_endpoints PRIVATE rclcpp::rclcpp std_msgs::std_msgs) add_executable(publisher_wait_for_all_acked member_function_with_wait_for_all_acked.cpp) target_link_libraries(publisher_wait_for_all_acked PRIVATE rclcpp::rclcpp std_msgs::std_msgs) add_executable(publisher_not_composable not_composable.cpp) target_link_libraries(publisher_not_composable PRIVATE rclcpp::rclcpp std_msgs::std_msgs) install(TARGETS publisher_lambda publisher_member_function publisher_member_function_with_type_adapter publisher_member_function_with_unique_network_flow_endpoints publisher_wait_for_all_acked publisher_not_composable DESTINATION lib/${PROJECT_NAME} ) if(BUILD_TESTING) find_package(ament_lint_auto REQUIRED) ament_lint_auto_find_test_dependencies() endif() ament_package()