2020-05-07 00:49:39 +08:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
option(WITH_CONTROL_CENTER "Build Robot Control Center" ON)
|
|
|
|
set(RC_LIB ON)
|
2020-05-15 15:29:48 +08:00
|
|
|
set(WITH_TBB ON) #是否编译TBB
|
2020-05-07 00:49:39 +08:00
|
|
|
|
|
|
|
#add_subdirectory(3rdparty/grpc)
|
2020-05-15 15:29:48 +08:00
|
|
|
add_subdirectory(3rdparty/gflags)
|
2020-05-07 00:49:39 +08:00
|
|
|
|
2020-05-15 15:29:48 +08:00
|
|
|
add_subdirectory(3rdparty/libserv)
|
2020-05-07 00:49:39 +08:00
|
|
|
add_subdirectory(robot_client)
|
|
|
|
|
|
|
|
#if (${WITH_CONTROL_CENTER} STREQUAL "ON")
|
|
|
|
# add_subdirectory(robot_center)
|
|
|
|
#endif ()
|
|
|
|
|