aboutsummaryrefslogtreecommitdiffstats
path: root/udp2lcm/CMakeLists.txt
blob: aaf54db38a8bd56727c5ac39b5ce222d2f48417b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
cmake_minimum_required(VERSION 3.10)
project(udp2lcm)

# 设置源文件为本文件夹下的所有.c .cpp文件以及lcmtype文件夹下的所有.c .cpp文件
aux_source_directory(. DIR_SRCS)
aux_source_directory(${CMAKE_SOURCE_DIR}/lcmtype DIR_SRCS)

# 生成可执行文件
add_executable(udp2lcm ${DIR_SRCS})
target_link_libraries(udp2lcm lcm)