feat: Enhance AgentChatWidget with multimodal capture modes and collaboration state management

This commit is contained in:
scawful
2025-10-04 17:02:13 -04:00
parent 59ef5fb8bf
commit 5f2c72bfc7
2 changed files with 28 additions and 1 deletions

View File

@@ -92,6 +92,17 @@ target_link_libraries(yaze_editor PUBLIC
ImGui
)
if(YAZE_WITH_JSON)
target_include_directories(yaze_editor PUBLIC
${CMAKE_SOURCE_DIR}/third_party/json/include)
if(TARGET nlohmann_json::nlohmann_json)
target_link_libraries(yaze_editor PUBLIC nlohmann_json::nlohmann_json)
endif()
target_compile_definitions(yaze_editor PUBLIC YAZE_WITH_JSON)
endif()
# Conditionally link ImGui Test Engine
if(YAZE_ENABLE_UI_TESTS AND TARGET ImGuiTestEngine)
target_link_libraries(yaze_editor PUBLIC ImGuiTestEngine)