Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add conditional include of omnishare
Change-Id: I4370239784271de2b5113b40684cad2ddb6e08a8
Signed-off-by: TanelDettenborn <tanel.dettenborn@intel.com>

Conflicts:
	project.qbs
  • Loading branch information
TanelDettenborn committed Oct 7, 2015
1 parent 2db5b5f commit 519c857
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions project.qbs
@@ -1,14 +1,23 @@
import qbs
import qbs.File


Project {
qbsSearchPaths: ['project/qbs']

references: [
"emulator/emulator.qbs",
"libtee/libtee.qbs",
"tests/tests.qbs",
"CAs/ClientApplications.qbs",
"TAs/TrustedApplications.qbs",
"libtee_pkcs11/libtee_pkcs11.qbs"
]
qbsSearchPaths: ['project/qbs']

references: {
var binaries = [
"emulator/emulator.qbs",
"libtee/libtee.qbs",
"tests/tests.qbs",
"CAs/ClientApplications.qbs",
"TAs/TrustedApplications.qbs",
"libtee_pkcs11/libtee_pkcs11.qbs"
]

if (File.exists(sourceDirectory + "/libomnishare/libomnishare.qbs")) {
binaries.push("libomnishare/libomnishare.qbs")
}
return binaries
}
}

0 comments on commit 519c857

Please sign in to comment.