mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-10-08 13:05:00 -04:00
feat: Add basic task flow run and edit (#212)
This commit is contained in:
22
TaskFlow/core/CMakeLists.txt
Normal file
22
TaskFlow/core/CMakeLists.txt
Normal file
@ -0,0 +1,22 @@
|
||||
qt_add_library(TaskFlowCore STATIC
|
||||
BaseTask.hpp BaseTask.cpp
|
||||
TaskConnection.hpp TaskConnection.cpp
|
||||
Flow.hpp Flow.cpp
|
||||
TaskPort.hpp TaskPort.cpp
|
||||
TaskRegistry.hpp TaskRegistry.cpp
|
||||
FlowManager.hpp FlowManager.cpp
|
||||
FlowRegistry.hpp FlowRegistry.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(TaskFlowCore
|
||||
PUBLIC
|
||||
Qt::Core
|
||||
Qt::Concurrent
|
||||
PRIVATE
|
||||
QodeAssistLogger
|
||||
)
|
||||
|
||||
target_include_directories(TaskFlowCore
|
||||
PUBLIC
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
Reference in New Issue
Block a user