diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-10-29 17:25:57 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-10-29 17:25:57 (GMT) |
commit | 420654a8e323beb7c8877453393568240a3f2a07 (patch) | |
tree | e91315b547e4c3ae6e45f18556bb291d29fc1c3e /Swift/SConscript | |
parent | 449686ae3a8b6ad059a7c905387adaca40e9e8e8 (diff) | |
download | swift-420654a8e323beb7c8877453393568240a3f2a07.zip swift-420654a8e323beb7c8877453393568240a3f2a07.tar.bz2 |
Make Qt non-mandatory for global build.
Diffstat (limited to 'Swift/SConscript')
-rw-r--r-- | Swift/SConscript | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Swift/SConscript b/Swift/SConscript index 0064eee..ee0140c 100644 --- a/Swift/SConscript +++ b/Swift/SConscript @@ -7,7 +7,9 @@ SConscript("Controllers/SConscript") if env["SCONS_STAGE"] == "build" : if not GetOption("help") and not env.get("HAVE_OPENSSL", 0) : print "Error: Swift requires OpenSSL support, and OpenSSL was not found." - Exit(1) - - if env["target"] == "native": + env["PROJECTS"].remove("Swift") + elif not GetOption("help") and not env.get("HAVE_QT", 0) : + print "Error: Swift requires Qt. Not building Swift." + env["PROJECTS"].remove("Swift") + elif env["target"] == "native": SConscript("QtUI/SConscript") |