aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'qbs.qbs')
-rw-r--r--qbs.qbs21
1 files changed, 0 insertions, 21 deletions
diff --git a/qbs.qbs b/qbs.qbs
index d126cf69a..43c0dc204 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -3,28 +3,7 @@ import qbs 1.0
Project {
minimumQbsVersion: "1.4"
qbsSearchPaths: ["qbs-resources"]
- property bool enableUnitTests: false
- property bool enableProjectFileUpdates: false
- property bool enableRPath: true
- property bool installApiHeaders: true
property bool withExamples: false
- property string libDirName: "lib"
- property string appInstallDir: "bin"
- property string libInstallDir: qbs.targetOS.contains("windows") ? "bin" : libDirName
- property string libexecInstallDir: "libexec/qbs"
- property string relativeLibexecPath: "../" + libexecInstallDir
- property string relativePluginsPath: "../" + libDirName
- property string relativeSearchPath: ".."
- property stringList libRPaths: {
- if (!enableRPath)
- return undefined;
- if (qbs.targetOS.contains("linux"))
- return ["$ORIGIN/../" + libDirName];
- if (qbs.targetOS.contains("osx"))
- return ["@loader_path/../" + libDirName]
- }
- property string resourcesInstallDir: ""
- property string pluginsInstallDir: libDirName
references: [
"dist/dist.qbs",