From 051fbb9be52cf54128879fa132120e631956cf83 Mon Sep 17 00:00:00 2001 From: Egutierrez Date: Mon, 18 May 2026 18:46:50 +0200 Subject: [PATCH] feat(0112): register kanban_cpp app in cpp/CMakeLists.txt + close issue Adds add_subdirectory block for apps/kanban_cpp (lives in apps/ per issue 0096). The app itself is a sub-repo (gitignored via apps/*/), with its own git history and master branch initialized. Six panels reuse registry: http_request_cpp_core, kpi_card_cpp_viz, sparkline_cpp_viz, agent_runs_timeline_cpp_viz, dod_evidence_panel_cpp_viz. Backend Go on :8403 (independent operations.db from kanban_web). --- cpp/CMakeLists.txt | 6 ++++++ dev/issues/{ => completed}/0112-kanban-cpp-app.md | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) rename dev/issues/{ => completed}/0112-kanban-cpp-app.md (99%) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 952dafb8..8d0d48d4 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -529,3 +529,9 @@ set(_PROCESS_EXPLORER_DIR ${CMAKE_SOURCE_DIR}/../apps/process_explorer) if(EXISTS ${_PROCESS_EXPLORER_DIR}/CMakeLists.txt) add_subdirectory(${_PROCESS_EXPLORER_DIR} ${CMAKE_BINARY_DIR}/apps/process_explorer) endif() + +# --- kanban_cpp (lives in apps/, issue 0096) --- +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() diff --git a/dev/issues/0112-kanban-cpp-app.md b/dev/issues/completed/0112-kanban-cpp-app.md similarity index 99% rename from dev/issues/0112-kanban-cpp-app.md rename to dev/issues/completed/0112-kanban-cpp-app.md index 9be33fe9..dc081d1b 100644 --- a/dev/issues/0112-kanban-cpp-app.md +++ b/dev/issues/completed/0112-kanban-cpp-app.md @@ -1,7 +1,7 @@ --- id: "0112" title: "App kanban_cpp: clon C++ ImGui de kanban_web con backend Go propio" -status: pendiente +status: completed type: app domain: - cpp-stack