86 lines
2.5 KiB
CMake
86 lines
2.5 KiB
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(robot_laser_geometry)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
include(CTest)
|
|
|
|
# Find dependencies
|
|
find_package(Eigen3 REQUIRED)
|
|
find_package(GTest REQUIRED)
|
|
|
|
# Include directories
|
|
include_directories(
|
|
include
|
|
${EIGEN3_INCLUDE_DIRS}
|
|
${GTEST_INCLUDE_DIRS}
|
|
)
|
|
|
|
# Create library
|
|
add_library(robot_laser_geometry SHARED src/laser_geometry.cpp)
|
|
|
|
target_include_directories(robot_laser_geometry
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include/${PROJECT_NAME}>
|
|
)
|
|
|
|
target_link_libraries(robot_laser_geometry PUBLIC
|
|
robot_sensor_msgs
|
|
geometry_msgs
|
|
robot_time
|
|
tf3
|
|
data_convert
|
|
)
|
|
|
|
if(TARGET Eigen3::Eigen)
|
|
target_link_libraries(robot_laser_geometry PUBLIC Eigen3::Eigen)
|
|
else()
|
|
target_include_directories(robot_laser_geometry PUBLIC ${EIGEN3_INCLUDE_DIRS})
|
|
endif()
|
|
|
|
# Causes the visibility macros to use dllexport rather than dllimport,
|
|
# which is appropriate when building the dll but not consuming it.
|
|
target_compile_definitions(robot_laser_geometry PRIVATE "ROBOT_LASER_GEOMETRY_BUILDING_LIBRARY")
|
|
|
|
# --- Cài đặt thư viện vào hệ thống khi chạy make install ---
|
|
install(TARGETS robot_laser_geometry
|
|
EXPORT robot_laser_geometry-targets
|
|
ARCHIVE DESTINATION lib # Thư viện tĩnh .a
|
|
LIBRARY DESTINATION lib # Thư viện động .so
|
|
RUNTIME DESTINATION bin # File thực thi (nếu có)
|
|
INCLUDES DESTINATION include # Cài đặt include
|
|
)
|
|
|
|
install(
|
|
DIRECTORY include/
|
|
DESTINATION include/${PROJECT_NAME}
|
|
)
|
|
|
|
# --- Xuất export set robot_laser_geometry-targets thành file CMake module ---
|
|
# --- Tạo file lib/cmake/robot_laser_geometry/laser_geometry-targets.cmake ---
|
|
# --- File này chứa cấu hình giúp project khác có thể dùng ---
|
|
# --- Find_package(robot_laser_geometry REQUIRED) ---
|
|
# --- Target_link_libraries(my_app PRIVATE robot_laser_geometry::robot_laser_geometry) ---
|
|
install(EXPORT robot_laser_geometry-targets
|
|
FILE robot_laser_geometry-targets.cmake
|
|
NAMESPACE robot_laser_geometry::
|
|
DESTINATION lib/cmake/robot_laser_geometry
|
|
)
|
|
|
|
|
|
# Tests
|
|
if(BUILD_TESTING)
|
|
enable_testing()
|
|
|
|
add_executable(projection_test test/projection_test.cpp)
|
|
target_link_libraries(projection_test
|
|
robot_laser_geometry
|
|
GTest::GTest
|
|
GTest::Main
|
|
pthread
|
|
)
|
|
add_test(NAME projection_test COMMAND projection_test)
|
|
endif()
|