21 lines
566 B
CMake
21 lines
566 B
CMake
# 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)
|