diff --git a/shared/common.cpp b/shared/common.cpp index 4a27daa..a515ff4 100644 --- a/shared/common.cpp +++ b/shared/common.cpp @@ -17,6 +17,7 @@ inline void initResources() { Q_INIT_RESOURCE(migrations); + Q_INIT_RESOURCE(plaintexts); } bool Common::initSqliteDatabase(QString path) diff --git a/shared/plaintexts.qrc b/shared/plaintexts.qrc new file mode 100644 index 0000000..b1e4786 --- /dev/null +++ b/shared/plaintexts.qrc @@ -0,0 +1,6 @@ + + + ../LICENSE + ../LICENSE-3RD-PARTY + + diff --git a/shared/shared.pro b/shared/shared.pro index cdd68e9..3e887b6 100644 --- a/shared/shared.pro +++ b/shared/shared.pro @@ -101,3 +101,4 @@ unix { INSTALLS += target } RESOURCES = migrations/migrations.qrc +RESOURCES += plaintexts.qrc