Removed folder 'Testing' - not needed yet

This commit is contained in:
Uwe Jakobeit
2026-03-30 11:52:39 +02:00
parent 00f8e9a751
commit a4b0739467
722 changed files with 23872 additions and 22 deletions

19
controller/CMakeLists.txt Normal file
View File

@@ -0,0 +1,19 @@
include_directories(.)
# Define a shared library
add_library(ctrl_algo SHARED
Controller.cpp
Controller.h
)
# Propagate include paths to projects linking against this library
target_include_directories(ctrl_algo PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# Link an executable to the library
# add_executable(app src/main.cpp)
# target_link_libraries(app PRIVATE math_utils)