mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-07-24 04:01:04 -04:00
feat: add support acp in common chat (#369)
This commit is contained in:
29
sources/acp/CMakeLists.txt
Normal file
29
sources/acp/CMakeLists.txt
Normal 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)
|
||||
Reference in New Issue
Block a user