SenShaMart/demo/CMakeLists.txt
2023-07-13 11:32:02 +10:00

18 lines
No EOL
394 B
CMake

cmake_minimum_required (VERSION 3.8)
SET(CMAKE_POLICY_DEFAULT_CMP0077 NEW)
project("senshamart demo" C CXX)
if(EXISTS "sensor_client")
add_subdirectory("sensor_client")
endif()
if(EXISTS "milk_client")
add_subdirectory("milk_client")
endif()
if(EXISTS "camera_client")
add_subdirectory("camera_client")
endif()
if(EXISTS "demo_show_video")
add_subdirectory("demo_show_video")
endif()