Skip to content

Commit

Permalink
Fix the adjacency matrix loader
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Jul 29, 2024
1 parent 73f3623 commit 7c6efe8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/plugins/correlation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ else()
qt_add_library(${PluginName} ${LINK_TYPE} ${SOURCES} ${HEADERS})
endif()

set(CORRELATION_PLUGIN_QML_MODULE_DIR
"${CMAKE_CURRENT_LIST_DIR}/ui/qml/Graphia/Plugins/Correlation" PARENT_SCOPE)

add_subdirectory(ui/qml/Graphia/Plugins/Correlation)

if(NOT APPLE AND NOT MSVC)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ qt_add_qml_module(generic_qml
matrix.svg
table.svg
tools.svg
SOURCES
${CORRELATION_PLUGIN_QML_MODULE_DIR}/graphsizeestimateplot.h
${CORRELATION_PLUGIN_QML_MODULE_DIR}/graphsizeestimateplot.cpp
)

target_include_directories(generic_qml PRIVATE ${CORRELATION_PLUGIN_QML_MODULE_DIR})

target_link_libraries(generic_qml
PRIVATE Qt6::Quick
)
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ qt_add_qml_module(websearch_qml
globe.svg
${GENERIC_PLUGIN_QML_MODULE_DIR}/matrix.svg
${GENERIC_PLUGIN_QML_MODULE_DIR}/table.svg
SOURCES
${CORRELATION_PLUGIN_QML_MODULE_DIR}/graphsizeestimateplot.h
${CORRELATION_PLUGIN_QML_MODULE_DIR}/graphsizeestimateplot.cpp
)

target_include_directories(websearch_qml PRIVATE ${CORRELATION_PLUGIN_QML_MODULE_DIR})

target_link_libraries(websearch_qml
PRIVATE Qt6::Quick
)

0 comments on commit 7c6efe8

Please sign in to comment.