chore: sync from fn-registry agent

This commit is contained in:
fn-registry agent
2026-05-09 18:11:21 +02:00
commit 822cbbd450
11 changed files with 1378 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# navegator_dashboard — Windows-only por diseño.
# Linux: skip silenciosamente para que cpp/build/ no falle.
if(NOT WIN32)
message(STATUS "navegator_dashboard: skipping (Windows-only).")
return()
endif()
add_imgui_app(navegator_dashboard
main.cpp
chrome_scanner.cpp
chrome_launcher.cpp
local_api.cpp
panels.cpp
)
target_include_directories(navegator_dashboard PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(navegator_dashboard PRIVATE ws2_32)
set_target_properties(navegator_dashboard PROPERTIES WIN32_EXECUTABLE TRUE)