summaryrefslogtreecommitdiffstats
blob: a1ee3aecc02dc7905f5be973e187a3d546a84107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import datetime

Import("env")

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."
		if "Swift" in env["PROJECTS"] :
			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")