fixed issue on udpstreamer trigger logic

This commit is contained in:
Martino Ferrari
2026-08-28 16:53:17 +02:00
parent 1c61e814c0
commit 044ce57ba3
170 changed files with 16958 additions and 24036 deletions
@@ -0,0 +1,27 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file LICENSE.rst or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake
# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an
# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it
# would cause a fatal error, even though it would be a no-op.
if(NOT EXISTS "/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-src")
file(MAKE_DIRECTORY "/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-src")
endif()
file(MAKE_DIRECTORY
"/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-build"
"/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-subbuild/imgui-populate-prefix"
"/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-subbuild/imgui-populate-prefix/tmp"
"/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-subbuild/imgui-populate-prefix/src/imgui-populate-stamp"
"/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-subbuild/imgui-populate-prefix/src"
"/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-subbuild/imgui-populate-prefix/src/imgui-populate-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-subbuild/imgui-populate-prefix/src/imgui-populate-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "/home/martino/Projects/marte2_projects/MARTe_Integrated_components/Client/streamhub/_deps/imgui-subbuild/imgui-populate-prefix/src/imgui-populate-stamp${cfgdir}") # cfgdir has leading slash
endif()