10 lines
203 B
CMake
10 lines
203 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
set(DEMO_NAME multi_lidars_upgrade)
|
|
add_executable(${DEMO_NAME} main.cpp)
|
|
|
|
target_link_libraries(${DEMO_NAME}
|
|
PUBLIC
|
|
livox_lidar_sdk_static
|
|
)
|