From c8d6ba5c139d87e7d4ba30acd95eadabcd326598 Mon Sep 17 00:00:00 2001 From: Egutierrez Date: Fri, 22 May 2026 23:38:17 +0200 Subject: [PATCH] feat(0133): register data_table_bench in cpp/CMakeLists.txt Adds the add_subdirectory block for apps/data_table_bench so the build system picks it up. The app itself lives in its own sub-repo. Co-Authored-By: Claude Sonnet 4.6 --- cpp/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 231e0e9b..98e26cfc 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -541,3 +541,9 @@ set(_KANBAN_CPP_DIR ${CMAKE_SOURCE_DIR}/../apps/kanban_cpp) if(EXISTS ${_KANBAN_CPP_DIR}/CMakeLists.txt) add_subdirectory(${_KANBAN_CPP_DIR} ${CMAKE_BINARY_DIR}/apps/kanban_cpp) endif() + +# --- data_table_bench (lives in apps/, issue 0133) --- +set(_DATA_TABLE_BENCH_DIR ${CMAKE_SOURCE_DIR}/../apps/data_table_bench) +if(EXISTS ${_DATA_TABLE_BENCH_DIR}/CMakeLists.txt) + add_subdirectory(${_DATA_TABLE_BENCH_DIR} ${CMAKE_BINARY_DIR}/apps/data_table_bench) +endif()