File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -15,3 +15,26 @@ index 0b17e4d5..9ace1736 100644
15
15
16
16
if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
17
17
message("${PROJECT_NAME}: You did not request a specific build type: selecting 'RelWithDebInfo'.")
18
+
19
+ diff --git a/ur_calibration/CMakeLists.txt b/ur_calibration/CMakeLists.txt
20
+ index 1f6bd0d9e..42de20644 100644
21
+ --- a/ur_calibration/CMakeLists.txt
22
+ +++ b/ur_calibration/CMakeLists.txt
23
+ @@ -37,11 +37,16 @@ target_include_directories(calibration
24
+ target_link_libraries(calibration
25
+ ur_client_library::urcl
26
+ Eigen3::Eigen
27
+ - yaml-cpp
28
+ rclcpp::rclcpp
29
+ ur_robot_driver::ur_robot_driver_log_handler
30
+ )
31
+
32
+ + if(TARGET yaml-cpp::yaml-cpp)
33
+ + target_link_libraries(calibration yaml-cpp::yaml-cpp)
34
+ + else()
35
+ + target_link_libraries(calibration yaml-cpp)
36
+ + endif()
37
+ +
38
+ add_executable(calibration_correction
39
+ src/calibration_correction.cpp
40
+ )
You can’t perform that action at this time.
0 commit comments