a76ec74338
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).
25 lines
889 B
CMake
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()
|