Files
kanban_cpp/CMakeLists.txt
T
Egutierrez a76ec74338 feat: initial scaffold kanban_cpp v0.1.0
C++ ImGui kanban for steering LLM agents. Six panels (Board, Calendar,
Dashboard, Agent runs, Worktrees, DoD inspector) wired to registry
functions http_request, kpi_card, sparkline, agent_runs_timeline,
dod_evidence_panel. Backend Go on :8403 (independent operations.db from
kanban_web).
2026-05-18 18:46:09 +02:00

25 lines
889 B
CMake

add_imgui_app(kanban_cpp
main.cpp
data.cpp
panel_board.cpp
panel_calendar.cpp
panel_dashboard.cpp
panel_agent_runs.cpp
panel_worktrees.cpp
panel_dod.cpp
# Registry functions consumed (see app.md::uses_functions)
${CMAKE_SOURCE_DIR}/functions/core/http_request.cpp
${CMAKE_SOURCE_DIR}/functions/viz/kpi_card.cpp
${CMAKE_SOURCE_DIR}/functions/viz/sparkline.cpp
${CMAKE_SOURCE_DIR}/functions/viz/agent_runs_timeline.cpp
${CMAKE_SOURCE_DIR}/functions/viz/agent_runs_timeline_helpers.cpp
${CMAKE_SOURCE_DIR}/functions/viz/dod_evidence_panel.cpp
${CMAKE_SOURCE_DIR}/functions/viz/dod_evidence_panel_helpers.cpp
)
target_include_directories(kanban_cpp PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
if(WIN32)
target_link_libraries(kanban_cpp PRIVATE ws2_32)
set_target_properties(kanban_cpp PROPERTIES WIN32_EXECUTABLE TRUE)
endif()