mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-05-28 03:10:28 -04:00
24 lines
525 B
CMake
24 lines
525 B
CMake
add_library(LLMCore STATIC
|
|
RequestType.hpp
|
|
Provider.hpp
|
|
ProvidersManager.hpp ProvidersManager.cpp
|
|
ContextData.hpp
|
|
PromptTemplate.hpp
|
|
PromptTemplateManager.hpp PromptTemplateManager.cpp
|
|
RequestConfig.hpp
|
|
RequestHandler.hpp RequestHandler.cpp
|
|
)
|
|
|
|
target_link_libraries(LLMCore
|
|
PUBLIC
|
|
Qt::Core
|
|
Qt::Network
|
|
QtCreator::Core
|
|
QtCreator::Utils
|
|
QtCreator::ExtensionSystem
|
|
PRIVATE
|
|
QodeAssistLogger
|
|
)
|
|
|
|
target_include_directories(LLMCore PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|