&& (qbs.architecture === qbs.hostArchitecture
|| (qbs.architecture === "x86" && qbs.hostArchitecture === "x86_64"));
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + qbs.hostPlatform + "/" + qbs.hostArchitecture + ")");
return result;
}
name: "hello-world"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "p"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "app-caller"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
type: "product-under-test"
property bool skip: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
}
if (!supportsCrossRun())
- console.info("target platform/arch differ from host platform/arch")
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
}
}
property bool _testPlatform: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
property bool _testPlatform: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
}
property bool dummy: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
readonly property string beginning: "beginning"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
}
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
files: "main.cpp"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: project.name
}
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
return false;
}
if (qbs.targetPlatform !== Host.platform() || qbs.architecture !== Host.architecture()) {
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return false;
}
return true;
}
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
console.info("executable suffix: " + cpp.executableSuffix);
return result;
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "runner"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "testApp"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "helper-app"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
Depends {
property bool dummy: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
if (!capnproto.cpp.present)
console.info("capnproto is not present");
return result && capnproto.cpp.present;
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
if (!capnproto.cpp.present)
console.info("capnproto is not present");
return result && capnproto.cpp.present;
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
if (!capnproto.cpp.present)
console.info("capnproto is not present");
return result && capnproto.cpp.present;
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
if (!capnproto.cpp.present)
console.info("capnproto is not present");
return result && capnproto.cpp.present;
property bool enabled: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
property string name: 'configure'
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "theapp"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "p"
// if cpp module is not available, we can't check the architecture
&& (qbs.architecture === undefined || qbs.architecture === Host.architecture());
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "consumer"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasFlatbuffers;
}
property bool hasFlatbuffers: {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasFlatbuffers;
}
property bool hasFlatbuffers: {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasFlatbuffers;
}
property bool hasFlatbuffers: {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasFlatbuffers;
}
property bool hasFlatbuffers: {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasFlatbuffers;
}
property bool hasFlatbuffers: {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasFlatbuffers;
}
property bool hasFlatbuffers: {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasFlatbuffers;
}
property bool hasFlatbuffers: {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
Depends { name: "dep" }
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasDependencies;
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
consoleApplication: true
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
type: 'application'
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "app"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
Depends { name: "cpp" }
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
console.info("executable suffix: " + cpp.executableSuffix);
return result;
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "testapp"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
Depends { name: "cpp" }
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
type: ["application"]
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
console.info("executable suffix: " + cpp.executableSuffix);
return result;
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && qbs.targetOS.includes("windows");
}
files: ["main.cpp"]
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && qbs.targetOS.includes("macos");
}
files: ["main.mm"]
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && qbs.targetOS.includes("windows") || qbs.targetOS.includes("macos");
}
files: [qbs.targetOS.includes("darwin") ? "main.mm" : "main.cpp"]
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
files: [qbs.targetOS.includes("darwin") ? "main.mm" : "main.cpp"]
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
files: [qbs.targetOS.includes("darwin") ? "main.mm" : "main.cpp"]
property bool _testPlatform: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
Profile {
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
nodejs.applicationFile: "hello.js"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasProtobuf;
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasProtobuf;
}
name: "addressbook_cpp"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasProtobuf;
}
name: "addressbook_nanopb"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasProtobuf;
}
name: "addressbook_objc"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasProtobuf;
}
name: "proto_lib"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasProtobuf;
}
name: "app"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result && hasProtobuf;
}
name: "app"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "response-file-text"
configure: {
var result = targetPlatform === Host.platform() && targetArchitecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + targetPlatform + "/" + targetArchitecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
}
}
}
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: "app"
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
Depends { name: "cpp" }
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: 'someapp'
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: 'someapp'
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: 'someapp'
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
name: 'someapp'
condition: {
var result = qbs.targetPlatform === Host.platform() && qbs.architecture === Host.architecture();
if (!result)
- console.info("target platform/arch differ from host platform/arch");
+ console.info("target platform/arch differ from host platform/arch ("
+ + qbs.targetPlatform + "/" + qbs.architecture + " vs "
+ + Host.platform() + "/" + Host.architecture() + ")");
return result;
}
Depends { name: "vcs" }