1 Star 0 Fork 232

Jermia/RoboCar

forked from CVTeam_CN/RoboCar 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 997 Bytes
一键复制 编辑 原始数据 按行查看 历史
Pulsar-V 提交于 2020-05-30 14:07 . Modify:删除旧版本中的Log方法
cmake_minimum_required(VERSION 3.0)
option(WITH_CONTROL_CENTER "Build Robot Control Center" ON)
#是否编译TBB
option(WITH_TBB "Build With TBB" ON)
#是否编译REALSENSE
option(WITH_LIBREALSENCE2 "Build With Librealsence" OFF)
#编译测试
option(RC_TEST "Build With test" ON)
#开启下位控制器模式
add_definitions(-D USE_DSP_DEVICE)
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++14" COMPILER_SUPPORTS_CXX14)
set(CMAKE_CXX_STANDARD 14)
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
set(OpenGL_GL_PREFERENCE GLVND)
set(BUILD_EXAMPLES ON)
add_subdirectory(3rdparty/grpc)
add_subdirectory(3rdparty/gflags)
add_subdirectory(3rdparty/libserv)
if (${WITH_TBB} STREQUAL "OFF")
add_subdirectory(3rdparty/librealsense)
endif ()
add_subdirectory(3rdparty/websocketpp)
add_subdirectory(tools)
add_subdirectory(robot_client)
if (${WITH_CONTROL_CENTER} STREQUAL "ON")
add_subdirectory(robot_center)
endif ()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/jermia/uestc-careye.git
git@gitee.com:jermia/uestc-careye.git
jermia
uestc-careye
RoboCar
master

搜索帮助