mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-03-30 17:32:56 -04:00
feat: Add LLMCore submodule
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -0,0 +1,3 @@
|
||||
[submodule "sources/external/llmcore"]
|
||||
path = sources/external/llmcore
|
||||
url = https://github.com/Palm1r/llmcore.git
|
||||
|
||||
@ -35,6 +35,7 @@ add_definitions(
|
||||
)
|
||||
|
||||
add_subdirectory(llmcore)
|
||||
add_subdirectory(sources/external/llmcore)
|
||||
add_subdirectory(settings)
|
||||
add_subdirectory(logger)
|
||||
add_subdirectory(UIControls)
|
||||
|
||||
@ -80,7 +80,7 @@ target_link_libraries(QodeAssistChatView
|
||||
Qt::Network
|
||||
QtCreator::Core
|
||||
QtCreator::Utils
|
||||
LLMCore
|
||||
PluginLLMCore
|
||||
QodeAssistSettings
|
||||
Context
|
||||
QodeAssistUIControlsplugin
|
||||
|
||||
@ -20,7 +20,7 @@ target_link_libraries(Context
|
||||
QtCreator::Utils
|
||||
QtCreator::ProjectExplorer
|
||||
PRIVATE
|
||||
LLMCore
|
||||
PluginLLMCore
|
||||
QodeAssistSettings
|
||||
)
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
add_library(LLMCore STATIC
|
||||
add_library(PluginLLMCore STATIC
|
||||
RequestType.hpp
|
||||
Provider.hpp Provider.cpp
|
||||
ProvidersManager.hpp ProvidersManager.cpp
|
||||
@ -21,7 +21,7 @@ add_library(LLMCore STATIC
|
||||
ResponseCleaner.hpp
|
||||
)
|
||||
|
||||
target_link_libraries(LLMCore
|
||||
target_link_libraries(PluginLLMCore
|
||||
PUBLIC
|
||||
Qt::Core
|
||||
Qt::Network
|
||||
@ -32,4 +32,4 @@ target_link_libraries(LLMCore
|
||||
QodeAssistLogger
|
||||
)
|
||||
|
||||
target_include_directories(LLMCore PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
target_include_directories(PluginLLMCore PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
|
||||
1
sources/external/llmcore
vendored
Submodule
1
sources/external/llmcore
vendored
Submodule
Submodule sources/external/llmcore added at 555633fca3
Reference in New Issue
Block a user