z1_sdk/CMakeLists.txt

22 lines
770 B
CMake
Raw Normal View History

2022-07-20 11:20:01 +08:00
cmake_minimum_required(VERSION 3.0)
project(z1_sdk)
2023-01-28 16:02:16 +08:00
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -O3 -pthread")
2022-07-20 11:20:01 +08:00
2022-11-11 18:17:07 +08:00
set(EIGEN_PATH /usr/include/eigen3)
2022-07-20 11:20:01 +08:00
include_directories(
include
2022-11-11 18:17:07 +08:00
${EIGEN_PATH}
2022-07-20 11:20:01 +08:00
)
2022-11-11 18:17:07 +08:00
link_directories(lib)
2022-07-20 11:20:01 +08:00
2022-12-08 15:04:34 +08:00
add_executable(highcmd_basic examples/highcmd_basic.cpp )
target_link_libraries(highcmd_basic Z1_SDK_Linux64)
add_executable(highcmd_development examples/highcmd_development.cpp )
target_link_libraries(highcmd_development Z1_SDK_Linux64)
add_executable(lowcmd_development examples/lowcmd_development.cpp )
2023-01-30 20:28:13 +08:00
target_link_libraries(lowcmd_development Z1_SDK_Linux64)
add_subdirectory(pybind11)
pybind11_add_module(unitree_arm_interface examples_py/arm_python_interface.cpp)
target_link_libraries(unitree_arm_interface PRIVATE Z1_SDK_Linux64)