
* Set symbol visibility to hidden for rcl Enabling symbol visibility feature in gcc and clang compilers. This will hep find symbol export related issues in linux and potentially reduce compile times. Discourse topic link: https://discourse.ros.org/t/set-symbol-visibility-to-hidden-for-rmw-and-rcl-packages/7981 Signed-off-by: Sachin Suresh Bhat <bhatsach@amazon.com> * Remove WIN specific compiler definition in configure_rcl Signed-off-by: Sachin Suresh Bhat <bhatsach@amazon.com> * Rename macro name rcl_set_symbol_visibility_hidden Signed-off-by: Sachin Suresh Bhat <bhatsach@amazon.com> * Change macro to args for rcl_set_symbol_visibility_hidden Signed-off-by: Sachin Suresh Bhat <bhatsach@amazon.com>
63 lines
1.6 KiB
CMake
63 lines
1.6 KiB
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(rcl_yaml_param_parser)
|
|
|
|
find_package(ament_cmake_ros REQUIRED)
|
|
find_package(rcutils REQUIRED)
|
|
find_package(rcl REQUIRED)
|
|
find_package(libyaml_vendor REQUIRED)
|
|
find_package(yaml REQUIRED)
|
|
|
|
# Default to C++14
|
|
if(NOT CMAKE_CXX_STANDARD)
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
endif()
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
|
|
add_compile_options(-Wall -Wextra -Wpedantic)
|
|
endif()
|
|
|
|
include_directories(include ${yaml_INCLUDE_DIRS} ${rcutils_INCLUDE_DIRS} ${rcl_INCLUDE_DIRS})
|
|
|
|
set(rcl_yaml_parser_sources
|
|
src/parser.c
|
|
)
|
|
|
|
add_library(
|
|
${PROJECT_NAME}
|
|
${rcl_yaml_parser_sources})
|
|
ament_target_dependencies(${PROJECT_NAME} "yaml" "rcutils" "rcl")
|
|
|
|
rcl_set_symbol_visibility_hidden(${PROJECT_NAME} LANGUAGE "C")
|
|
# Causes the visibility macros to use dllexport rather than dllimport,
|
|
# which is appropriate when building the dll but not consuming it.
|
|
target_compile_definitions(${PROJECT_NAME} PRIVATE "RCL_YAML_PARAM_PARSER_BUILDING_DLL")
|
|
|
|
install(TARGETS ${PROJECT_NAME}
|
|
ARCHIVE DESTINATION lib
|
|
LIBRARY DESTINATION lib
|
|
RUNTIME DESTINATION bin)
|
|
|
|
if(BUILD_TESTING)
|
|
find_package(ament_cmake_gtest REQUIRED)
|
|
find_package(ament_lint_auto REQUIRED)
|
|
ament_lint_auto_find_test_dependencies()
|
|
|
|
# Gtests
|
|
ament_add_gtest(test_parse_yaml
|
|
test/test_parse_yaml.cpp
|
|
)
|
|
if(TARGET test_parse_yaml)
|
|
target_link_libraries(test_parse_yaml ${PROJECT_NAME})
|
|
endif()
|
|
|
|
endif()
|
|
|
|
ament_export_dependencies(ament_cmake)
|
|
ament_export_include_directories(include)
|
|
install(
|
|
DIRECTORY include/
|
|
DESTINATION include
|
|
)
|
|
ament_export_libraries(${PROJECT_NAME})
|
|
ament_package()
|