aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: c48703613e5d558051de3e1f9b7de84b82056264 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cmake_minimum_required(VERSION 3.10)
project(WheelCtrl)

# 设置编译参数
add_compile_options(-g -w)
# 添加头文件路径
include_directories(
    ${CMAKE_SOURCE_DIR}/lcmtype
)
# 添加库文件路径
link_directories(
    ${CMAKE_SOURCE_DIR}/lib
)
# 设置输出路径
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)

add_subdirectory(serial)
add_subdirectory(udp2lcm)