This pull request includes a change to the tests-integration/CMakeLists.txt file to improve the flexibility of how source files are included in the build process.
Build process improvement:
tests-integration/CMakeLists.txt: Modified the file(GLOB SOURCES "src/*.cc") command to file(GLOB SOURCES "src/**/*.cc") to include source files in subdirectories.
This pull request includes a change to the
tests-integration/CMakeLists.txt
file to improve the flexibility of how source files are included in the build process.Build process improvement:
tests-integration/CMakeLists.txt
: Modified thefile(GLOB SOURCES "src/*.cc")
command tofile(GLOB SOURCES "src/**/*.cc")
to include source files in subdirectories.