255e8dcf71
Frontend C++ ImGui (main.cpp + 4 paneles) + backend Go (HTTP + SQLite + fsnotify + SSE). Reusa parse/scan/watch funcs del registry (issue 0130a).
19 lines
447 B
CMake
19 lines
447 B
CMake
add_imgui_app(kanban_cpp
|
|
main.cpp
|
|
data.cpp
|
|
panel_board.cpp
|
|
panel_flows.cpp
|
|
panel_filters.cpp
|
|
panel_detail.cpp
|
|
${CMAKE_SOURCE_DIR}/functions/core/http_request.cpp
|
|
${CMAKE_SOURCE_DIR}/functions/core/sse_client.cpp
|
|
)
|
|
target_include_directories(kanban_cpp PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/vendor
|
|
)
|
|
|
|
if(WIN32)
|
|
set_target_properties(kanban_cpp PROPERTIES WIN32_EXECUTABLE TRUE)
|
|
endif()
|