diff options
-rw-r--r-- | BuildTools/SCons/SConstruct | 8 | ||||
-rw-r--r-- | Swift/SConscript | 8 |
2 files changed, 13 insertions, 3 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index e241746..11bd0b1 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -527,6 +527,14 @@ if env["PLATFORM"] == "darwin" : env["HAVE_IOKIT"] = True cocoa_conf.Finish() +# Qt +try : + myenv = env.Clone() + myenv.Tool("qt4", toolpath = ["#/BuildTools/SCons/Tools"]) + env["HAVE_QT"] = True +except : + env["HAVE_QT"] = False + ################################################################################ # DocBook setup ################################################################################ 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") |