From ad12fc89dfd10aef66ce045e11fbc6d39b95d87f Mon Sep 17 00:00:00 2001 From: Jakub Melka Date: Sun, 29 May 2022 17:48:07 +0200 Subject: [PATCH] QBS build fix --- Pdf4Qt.qbs | 1 + Pdf4QtLib/Pdf4QtLib.qbs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Pdf4Qt.qbs b/Pdf4Qt.qbs index c2ee907..0218a85 100644 --- a/Pdf4Qt.qbs +++ b/Pdf4Qt.qbs @@ -21,6 +21,7 @@ Project { "Pdf4QtViewerPlugins/OutputPreviewPlugin/OutputPreviewPlugin.qbs", "Pdf4QtViewerPlugins/RedactPlugin/RedactPlugin.qbs", "Pdf4QtViewerPlugins/SoftProofingPlugin/SoftProofingPlugin.qbs", + "Pdf4QtViewerPlugins/SignaturePlugin/SignaturePlugin.qbs", ]; ref.push(conan.generatedFilesPath + "/conanbuildinfo.qbs"); return ref; diff --git a/Pdf4QtLib/Pdf4QtLib.qbs b/Pdf4QtLib/Pdf4QtLib.qbs index 8bd1b53..fbd5375 100644 --- a/Pdf4QtLib/Pdf4QtLib.qbs +++ b/Pdf4QtLib/Pdf4QtLib.qbs @@ -2,7 +2,7 @@ import qbs Pdf4QtLibrary { name: "Pdf4QtLib" - Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml"] } + Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml", "svg"] } Depends { name: "openssl" } Depends { name: "freetype" } Depends { name: "libjpeg" } @@ -33,7 +33,7 @@ Pdf4QtLibrary { ] Export { Depends { name: "cpp" } - Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml"] } + Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml", "svg"] } cpp.includePaths: ["sources"] Depends { name: "openssl" } Depends { name: "freetype" }