1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-07-22 15:25:58 +00:00

Setup git libs for Pass plugin

This commit is contained in:
2025-01-07 20:55:30 +01:00
parent 7418894456
commit d33932be6d
7 changed files with 27 additions and 22 deletions

@ -23,6 +23,10 @@ add_library(${PLUGIN} MODULE ${SRC})
set_target_properties(${PLUGIN} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${PLUGIN})
qt5_use_modules(${PLUGIN} Qml Quick DBus)
add_library(libquazip5 SHARED IMPORTED)
set_property(TARGET libquazip5 PROPERTY IMPORTED_LOCATION "/usr/lib/${ARCH_TRIPLET}/libquazip5.so")
target_link_libraries(${PLUGIN} libquazip5)
set(QT_IMPORTS_DIR "/lib/${ARCH_TRIPLET}")