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

View File

@@ -3,12 +3,16 @@
qt_standard_project_setup()
include_directories(../controller)
qt_add_executable(app main.cpp
)
qt_add_library(app_lib STATIC
main.cpp
filter.h main.cpp filter.cpp
Controller.hpp main.cpp Controller.cpp
pwm.h pwm.cpp
climate-algorithm.h climate-algorithm.cpp
pid.h pid.cpp
@@ -25,5 +29,6 @@ target_include_directories(app_lib PRIVATE ${Qt6Core_INCLUDE_DIRS})
# add_executable(app main.cpp filter.cpp)
target_link_libraries(app PRIVATE
app_lib
ctrl_algo
Qt::Core
)