Qbs: fix build errors

This commit is contained in:
Jakub Melka 2021-12-13 13:58:07 +01:00
parent 75d40806ed
commit 0a35c95aa7
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
*.pro.user
*.qbs.user
conan.lock
conanbuildinfo.qbs
conanbuildinfo.txt

View File

@ -4,7 +4,7 @@ Pdf4QtLibrary {
Group {
fileTagsFilter: "dynamiclibrary"
qbs.install: install
qbs.installDir: "pdfplugins"
qbs.installDir: "bin/pdfplugins"
qbs.installSourceBase: buildDirectory
}
}

View File

@ -3,6 +3,7 @@ Product {
Depends { name: "cpp" }
Depends { name: "Qt.core" }
cpp.cxxLanguageVersion: "c++20"
cpp.minimumWindowsVersion: "6.1" // Require at least Windows 7, older versions will be ignored
property bool install: true
property string targetInstallDir
}