mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-03-31 01:42: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(llmcore)
|
||||||
|
add_subdirectory(sources/external/llmcore)
|
||||||
add_subdirectory(settings)
|
add_subdirectory(settings)
|
||||||
add_subdirectory(logger)
|
add_subdirectory(logger)
|
||||||
add_subdirectory(UIControls)
|
add_subdirectory(UIControls)
|
||||||
|
|||||||
@ -80,7 +80,7 @@ target_link_libraries(QodeAssistChatView
|
|||||||
Qt::Network
|
Qt::Network
|
||||||
QtCreator::Core
|
QtCreator::Core
|
||||||
QtCreator::Utils
|
QtCreator::Utils
|
||||||
LLMCore
|
PluginLLMCore
|
||||||
QodeAssistSettings
|
QodeAssistSettings
|
||||||
Context
|
Context
|
||||||
QodeAssistUIControlsplugin
|
QodeAssistUIControlsplugin
|
||||||
|
|||||||
@ -20,7 +20,7 @@ target_link_libraries(Context
|
|||||||
QtCreator::Utils
|
QtCreator::Utils
|
||||||
QtCreator::ProjectExplorer
|
QtCreator::ProjectExplorer
|
||||||
PRIVATE
|
PRIVATE
|
||||||
LLMCore
|
PluginLLMCore
|
||||||
QodeAssistSettings
|
QodeAssistSettings
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
add_library(LLMCore STATIC
|
add_library(PluginLLMCore STATIC
|
||||||
RequestType.hpp
|
RequestType.hpp
|
||||||
Provider.hpp Provider.cpp
|
Provider.hpp Provider.cpp
|
||||||
ProvidersManager.hpp ProvidersManager.cpp
|
ProvidersManager.hpp ProvidersManager.cpp
|
||||||
@ -21,7 +21,7 @@ add_library(LLMCore STATIC
|
|||||||
ResponseCleaner.hpp
|
ResponseCleaner.hpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(LLMCore
|
target_link_libraries(PluginLLMCore
|
||||||
PUBLIC
|
PUBLIC
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::Network
|
Qt::Network
|
||||||
@ -32,4 +32,4 @@ target_link_libraries(LLMCore
|
|||||||
QodeAssistLogger
|
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