9 lines
303 B
CMake
9 lines
303 B
CMake
# 主程序
|
|
add_executable(smartcar_demo1 main.cpp)
|
|
target_link_libraries(smartcar_demo1 common_lib ${OpenCV_LIBS})
|
|
|
|
add_executable(lidar_test lidar_test.cpp)
|
|
target_link_libraries(lidar_test common_lib)
|
|
|
|
add_executable(remote_control remote_control.cpp)
|
|
target_link_libraries(remote_control common_lib) |