From ddc360f424720799c26ce47d49f13929e00af2df Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 19 May 2016 17:07:49 +0200 Subject: qbs build: Move build config properties into a dedicated module. Qt Creator will do the same in order to be able to build plugins that are not part of the main source tree. This means the qbs build and install settings can no longer be controlled by properties in a higher- level project file, but need to come from a module. Change-Id: I20c0a4538395c8ee838b33f35be84ee59f601f90 Reviewed-by: Joerg Bornemann --- qbs.qbs | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'qbs.qbs') 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", -- cgit v1.2.1