feat: add support acp in common chat (#369)

This commit is contained in:
Petr Mironychev
2026-07-21 13:10:00 +02:00
committed by GitHub
parent af85efb554
commit 442263a6a7
158 changed files with 14270 additions and 4118 deletions

View File

@@ -0,0 +1,29 @@
add_library(QodeAssistAcp STATIC
AgentBinding.hpp AgentBinding.cpp
AgentDefinition.hpp AgentDefinition.cpp
AgentRegistryParser.hpp AgentRegistryParser.cpp
AgentCatalog.hpp AgentCatalog.cpp
AgentLaunch.hpp AgentLaunch.cpp
AgentCatalogStore.hpp AgentCatalogStore.cpp
AgentSpawn.hpp AgentSpawn.cpp
AgentTester.hpp AgentTester.cpp
ChatPermissionProvider.hpp ChatPermissionProvider.cpp
AcpChatBackend.hpp AcpChatBackend.cpp
)
target_link_libraries(QodeAssistAcp
PUBLIC
Qt::Core
Qt::Network
QtCreator::Core
QtCreator::Utils
QtCreator::ProjectExplorer
QtCreator::ExtensionSystem
LLMQore
QodeAssistSession
PRIVATE
QodeAssistLogger
QodeAssistSettings
)
target_include_directories(QodeAssistAcp PUBLIC ${CMAKE_SOURCE_DIR}/sources)