2021-09-01 20:46:41 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8.3)
|
|
|
|
project(unitree_legged_real)
|
|
|
|
|
|
|
|
add_compile_options(-std=c++11)
|
|
|
|
|
|
|
|
find_package(catkin REQUIRED COMPONENTS
|
|
|
|
roscpp
|
|
|
|
geometry_msgs
|
|
|
|
unitree_legged_msgs
|
|
|
|
)
|
|
|
|
|
|
|
|
catkin_package()
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
include
|
|
|
|
${Boost_INCLUDE_DIR}
|
|
|
|
${catkin_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS "-O3")
|
|
|
|
|
2022-02-15 15:14:35 +08:00
|
|
|
include_directories(/home/$ENV{USER}/Robot_SDK/unitree_legged_sdk/include)
|
|
|
|
link_directories(/home/$ENV{USER}/Robot_SDK/unitree_legged_sdk/lib)
|
|
|
|
string(CONCAT LEGGED_SDK_NAME libunitree_legged_sdk_amd64.so)
|
2021-09-02 18:24:10 +08:00
|
|
|
set(EXTRA_LIBS ${LEGGED_SDK_NAME} lcm)
|
|
|
|
|
2022-02-15 15:14:35 +08:00
|
|
|
add_executable(lcm_server /home/$ENV{USER}/Robot_SDK/unitree_legged_sdk/examples/lcm_server.cpp)
|
2021-09-02 18:24:10 +08:00
|
|
|
target_link_libraries(lcm_server ${EXTRA_LIBS} ${catkin_LIBRARIES})
|
|
|
|
add_dependencies(lcm_server ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|
2021-09-01 20:46:41 +08:00
|
|
|
|
|
|
|
add_executable(position_lcm src/exe/position_mode.cpp)
|
|
|
|
target_link_libraries(position_lcm ${EXTRA_LIBS} ${catkin_LIBRARIES})
|
|
|
|
add_dependencies(position_lcm ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|
|
|
|
|
|
|
|
add_executable(velocity_lcm src/exe/velocity_mode.cpp)
|
|
|
|
target_link_libraries(velocity_lcm ${EXTRA_LIBS} ${catkin_LIBRARIES})
|
|
|
|
add_dependencies(velocity_lcm ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|
|
|
|
|
|
|
|
add_executable(torque_lcm src/exe/torque_mode.cpp)
|
|
|
|
target_link_libraries(torque_lcm ${EXTRA_LIBS} ${catkin_LIBRARIES})
|
|
|
|
add_dependencies(torque_lcm ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|
|
|
|
|
|
|
|
add_executable(walk_lcm src/exe/walk_mode.cpp)
|
|
|
|
target_link_libraries(walk_lcm ${EXTRA_LIBS} ${catkin_LIBRARIES})
|
|
|
|
add_dependencies(walk_lcm ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|