feat: Implement ProposalDrawer for managing agent proposals with UI controls

This commit is contained in:
scawful
2025-10-01 19:38:08 -04:00
parent 02c6985201
commit 0b62bcbda0
9 changed files with 525 additions and 3 deletions

View File

@@ -14,6 +14,9 @@ if (NOT YAZE_MINIMAL_BUILD AND APPLE)
${YAZE_UTIL_SRC}
${YAZE_GUI_SRC}
${IMGUI_SRC}
# CLI service sources (needed for ProposalDrawer)
cli/service/proposal_registry.cc
cli/service/rom_sandbox_manager.cc
)
target_link_libraries(yaze_emu PUBLIC ${COCOA_LIBRARY})
elseif(NOT YAZE_MINIMAL_BUILD)
@@ -29,6 +32,9 @@ elseif(NOT YAZE_MINIMAL_BUILD)
${YAZE_UTIL_SRC}
${YAZE_GUI_SRC}
${IMGUI_SRC}
# CLI service sources (needed for ProposalDrawer)
cli/service/proposal_registry.cc
cli/service/rom_sandbox_manager.cc
)
endif()