diff options
author | Tobias Markmann <tm@ayena.de> | 2015-07-06 09:02:33 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2015-07-07 10:04:44 (GMT) |
commit | 88e392fd98a1d49d787860f4b504a01f082c6ae6 (patch) | |
tree | 48e0790f9314154462fff0de528aa76b2783c3bf /Swift | |
parent | 54dc62706f601bf2a19f9ecd752b531aa3bbf418 (diff) | |
download | swift-88e392fd98a1d49d787860f4b504a01f082c6ae6.zip swift-88e392fd98a1d49d787860f4b504a01f082c6ae6.tar.bz2 |
Fix './scons --help' if no Qt installation can be found
Test-Information:
Tested on Elementary OS 0.2.
Change-Id: Ieae4fc2a2c6fdfaaac9895153b09c9504ef71495
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/SConscript b/Swift/SConscript index 9f1a213..566019c 100644 --- a/Swift/SConscript +++ b/Swift/SConscript @@ -13,5 +13,5 @@ if env["SCONS_STAGE"] == "build" : if "Swift" in env["PROJECTS"] : print "Warning: Swift requires Qt. Not building the Swift Qt application." env["PROJECTS"].remove("Swift") - elif env["target"] == "native": + elif not GetOption("help") and env["target"] == "native": SConscript("QtUI/SConscript") |