2026-06-30 16:04:36 +08:00
|
|
|
add_library(motor_manager SHARED
|
|
|
|
|
src/motor_manager.cpp
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_include_directories(motor_manager PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
|
|
|
|
|
|
target_link_libraries(motor_manager
|
|
|
|
|
PUBLIC
|
|
|
|
|
cmvr_es::proto
|
|
|
|
|
cmvr_es::device::motor_core
|
|
|
|
|
cmvr_es::device::motor_bus_runtime
|
|
|
|
|
PRIVATE
|
|
|
|
|
cmvr_es::device::ti5_canopen_motor_driver
|
|
|
|
|
cmvr_es::device::mujoco_motor_driver
|
2026-07-09 14:21:44 +08:00
|
|
|
cmvr_es::device::ethercat_motor_driver
|
2026-06-30 16:04:36 +08:00
|
|
|
cmvr_es::ik_solver
|
|
|
|
|
glog
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_library(cmvr_es::device::motor_manager ALIAS motor_manager)
|
|
|
|
|
install(TARGETS motor_manager LIBRARY DESTINATION lib)
|