QBS build fix

This commit is contained in:
Jakub Melka 2022-05-29 17:48:07 +02:00
parent 63f5c8d742
commit ad12fc89df
2 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ Project {
"Pdf4QtViewerPlugins/OutputPreviewPlugin/OutputPreviewPlugin.qbs", "Pdf4QtViewerPlugins/OutputPreviewPlugin/OutputPreviewPlugin.qbs",
"Pdf4QtViewerPlugins/RedactPlugin/RedactPlugin.qbs", "Pdf4QtViewerPlugins/RedactPlugin/RedactPlugin.qbs",
"Pdf4QtViewerPlugins/SoftProofingPlugin/SoftProofingPlugin.qbs", "Pdf4QtViewerPlugins/SoftProofingPlugin/SoftProofingPlugin.qbs",
"Pdf4QtViewerPlugins/SignaturePlugin/SignaturePlugin.qbs",
]; ];
ref.push(conan.generatedFilesPath + "/conanbuildinfo.qbs"); ref.push(conan.generatedFilesPath + "/conanbuildinfo.qbs");
return ref; return ref;

View File

@ -2,7 +2,7 @@ import qbs
Pdf4QtLibrary { Pdf4QtLibrary {
name: "Pdf4QtLib" name: "Pdf4QtLib"
Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml"] } Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml", "svg"] }
Depends { name: "openssl" } Depends { name: "openssl" }
Depends { name: "freetype" } Depends { name: "freetype" }
Depends { name: "libjpeg" } Depends { name: "libjpeg" }
@ -33,7 +33,7 @@ Pdf4QtLibrary {
] ]
Export { Export {
Depends { name: "cpp" } Depends { name: "cpp" }
Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml"] } Depends { name: "Qt"; submodules: ["core", "gui", "widgets", "xml", "svg"] }
cpp.includePaths: ["sources"] cpp.includePaths: ["sources"]
Depends { name: "openssl" } Depends { name: "openssl" }
Depends { name: "freetype" } Depends { name: "freetype" }