71 lines
1.8 KiB
CMake
Executable File
71 lines
1.8 KiB
CMake
Executable File
cmake_minimum_required(VERSION 3.10)
|
|
project(tf3_sensor_msgs)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
# Find dependencies
|
|
find_package(Boost COMPONENTS thread REQUIRED)
|
|
find_package(GTest REQUIRED)
|
|
|
|
# Finding Eigen3
|
|
find_package(Eigen3 REQUIRED)
|
|
|
|
|
|
# Include directories
|
|
include_directories(
|
|
include
|
|
${EIGEN3_INCLUDE_DIRS}
|
|
${Boost_INCLUDE_DIRS}
|
|
${GTEST_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_library(tf3_sensor_msgs INTERFACE
|
|
)
|
|
|
|
target_include_directories(tf3_sensor_msgs
|
|
INTERFACE
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
)
|
|
|
|
target_link_libraries(tf3_sensor_msgs INTERFACE
|
|
sensor_msgs
|
|
data_convert
|
|
)
|
|
|
|
# --- Cài đặt thư viện vào hệ thống khi chạy make install ---
|
|
install(TARGETS tf3_sensor_msgs
|
|
EXPORT tf3_sensor_msgs-targets
|
|
INCLUDES DESTINATION include # Cài đặt include
|
|
)
|
|
|
|
# --- Xuất export set tf3_sensor_msgs-targets thành file CMake module ---
|
|
# --- Tạo file lib/cmake/tf3_sensor_msgs/tf3_sensor_msgs-targets.cmake ---
|
|
# --- File này chứa cấu hình giúp project khác có thể dùng ---
|
|
# --- Find_package(tf3_sensor_msgs REQUIRED) ---
|
|
# --- Target_link_libraries(my_app PRIVATE tf3_sensor_msgs::tf3_sensor_msgs) ---
|
|
install(EXPORT tf3_sensor_msgs-targets
|
|
FILE tf3_sensor_msgs-targets.cmake
|
|
NAMESPACE tf3_sensor_msgs::
|
|
DESTINATION lib/cmake/tf3_sensor_msgs
|
|
)
|
|
|
|
add_executable(test_tf2_sensor_msgs test/test_tf2_sensor_msgs.cpp)
|
|
target_include_directories(test_tf2_sensor_msgs PUBLIC
|
|
${EIGEN3_INCLUDE_DIRS}
|
|
${GTEST_INCLUDE_DIRS}
|
|
tf3_sensor_msgs
|
|
geometry_msgs
|
|
tf3
|
|
)
|
|
target_link_libraries(test_tf2_sensor_msgs
|
|
${GTEST_LIBRARIES}
|
|
Threads::Threads
|
|
tf3_sensor_msgs
|
|
geometry_msgs
|
|
tf3
|
|
data_convert
|
|
)
|