mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-05-28 03:10:28 -04:00
27 lines
687 B
CMake
27 lines
687 B
CMake
add_library(Context STATIC
|
|
DocumentContextReader.hpp DocumentContextReader.cpp
|
|
ChangesManager.h ChangesManager.cpp
|
|
ContextManager.hpp ContextManager.cpp
|
|
ContentFile.hpp
|
|
DocumentReaderQtCreator.hpp
|
|
IDocumentReader.hpp
|
|
TokenUtils.hpp TokenUtils.cpp
|
|
ProgrammingLanguage.hpp ProgrammingLanguage.cpp
|
|
IContextManager.hpp
|
|
IgnoreManager.hpp IgnoreManager.cpp
|
|
)
|
|
|
|
target_link_libraries(Context
|
|
PUBLIC
|
|
Qt::Core
|
|
QtCreator::Core
|
|
QtCreator::TextEditor
|
|
QtCreator::Utils
|
|
QtCreator::ProjectExplorer
|
|
PRIVATE
|
|
LLMCore
|
|
QodeAssistSettings
|
|
)
|
|
|
|
target_include_directories(Context PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR})
|