refactor: Restructure project into sources/tests layout and dissolve PluginLLMCore

This commit is contained in:
Petr Mironychev
2026-07-14 02:50:43 +02:00
parent adef7972ed
commit 34d4f2c517
348 changed files with 809 additions and 852 deletions

View File

@@ -0,0 +1,34 @@
qt_add_library(QodeAssistUIControls STATIC)
qt_policy(SET QTP0001 NEW)
qt_policy(SET QTP0004 NEW)
qt_add_qml_module(QodeAssistUIControls
URI UIControls
VERSION 1.0
DEPENDENCIES QtQuick
QML_FILES
qml/Badge.qml
qml/QoAButton.qml
qml/QoABusyIndicator.qml
qml/QoABusyOverlay.qml
qml/QoATextSlider.qml
qml/QoAComboBox.qml
qml/FadeListItemAnimation.qml
qml/QoASeparator.qml
qml/QoAToolTip.qml
RESOURCES
icons/dropdown-arrow-light.svg
icons/dropdown-arrow-dark.svg
)
target_link_libraries(QodeAssistUIControls
PRIVATE
Qt6::Core
Qt6::Quick
)
target_include_directories(QodeAssistUIControls
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
)