1 Star 9 Fork 16

Qingwen/OSQP_test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
KinZhang 提交于 2022-05-25 00:17 +08:00 . 重构了整体结构
cmake_minimum_required(VERSION 3.13.0)
project(common CXX)
set(CMAKE_CXX_STANDARD 14)
find_package(glog REQUIRED)
find_package(Eigen3 REQUIRED)
find_package(osqp REQUIRED)
find_package(PythonLibs REQUIRED)
add_executable(spile2d_test tcode/osqp_spline2d_solver_test.cc
common/smoothing/affine_constraint.cc
common/smoothing/discrete_points_math.cc
common/smoothing/osqp_spline1d_solver.cc
common/smoothing/osqp_spline2d_solver.cc
common/smoothing/polynomialxd.cc
common/smoothing/spline1d_constraint.cc
common/smoothing/spline1d_kernel_helper.cc
common/smoothing/spline1d_kernel.cc
common/smoothing/spline1d_seg.cc
common/smoothing/spline1d.cc
common/smoothing/spline2d_constraint.cc
common/smoothing/spline2d_kernel.cc
common/smoothing/spline2d_seg
common/smoothing/spline2d.cc
common/utils/math.cc
common/solver/osqp/osqp_interface.cc
)
add_executable(spile1d_test tcode/osqp_spline1d_solver_test.cc
common/smoothing/affine_constraint.cc
common/smoothing/discrete_points_math.cc
common/smoothing/osqp_spline1d_solver.cc
common/smoothing/osqp_spline2d_solver.cc
common/smoothing/polynomialxd.cc
common/smoothing/spline1d_constraint.cc
common/smoothing/spline1d_kernel_helper.cc
common/smoothing/spline1d_kernel.cc
common/smoothing/spline1d_seg.cc
common/smoothing/spline1d.cc
common/smoothing/spline2d_constraint.cc
common/smoothing/spline2d_kernel.cc
common/smoothing/spline2d_seg
common/smoothing/spline2d.cc
common/utils/math.cc
common/solver/osqp/osqp_interface.cc
)
include_directories(SYSTEM ${EIGEN3_INCLUDE_DIR})
include_directories(${CMAKE_SOURCE_DIR})
include_directories(${PYTHON_INCLUDE_DIRS})
target_link_libraries(spile2d_test
${PYTHON_LIBRARIES}
osqp::osqp
glog
)
target_link_libraries(spile1d_test
${PYTHON_LIBRARIES}
osqp::osqp
glog
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kin-zhang/osqp_test.git
git@gitee.com:kin-zhang/osqp_test.git
kin-zhang
osqp_test
OSQP_test
master

搜索帮助