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" }