Accessing the core and the model from this QML UI project.

This commit is contained in:
2026-03-03 18:58:34 +01:00
parent ed54d5e54e
commit 2ff97c588c
3 changed files with 29 additions and 0 deletions

View File

@ -30,6 +30,9 @@ set_target_properties(${TARGET_APP} PROPERTIES
WIN32_EXECUTABLE TRUE
)
target_include_directories(${TARGET_APP} PRIVATE ${CORE_LIB_DIR}/)
target_link_libraries(${TARGET_APP} PRIVATE GenericCore)
target_link_libraries(${TARGET_APP}
PRIVATE Qt6::Quick
)