demo version

This commit is contained in:
Josip Milovac 2023-07-13 11:32:02 +10:00
parent fbb282a801
commit 672d6daa8e
125 changed files with 17918 additions and 1481 deletions

18
demo/CMakeLists.txt Normal file
View file

@ -0,0 +1,18 @@
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()