mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-07-22 15:04:42 -04:00
Add base qml chat view to navigation panel
This commit is contained in:
24
chatview/CMakeLists.txt
Normal file
24
chatview/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
||||
qt_add_library(QodeAssistChatView STATIC)
|
||||
|
||||
find_package(Qt6 COMPONENTS Core Widgets Quick QuickWidgets Network REQUIRED)
|
||||
|
||||
qt_add_qml_module(QodeAssistChatView
|
||||
URI ChatView
|
||||
VERSION 1.0
|
||||
QML_FILES
|
||||
qml/ChatView.qml
|
||||
SOURCES
|
||||
BaseChatWidget.hpp BaseChatWidget.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(QodeAssistChatView
|
||||
PRIVATE
|
||||
Qt::Widgets
|
||||
Qt::Quick
|
||||
Qt::QuickWidgets
|
||||
Qt::Network
|
||||
)
|
||||
|
||||
target_include_directories(QodeAssistChatView
|
||||
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
Reference in New Issue
Block a user