summaryrefslogtreecommitdiffstats
blob: bf198735bf1ca85ffac75b6b7a02af4627520ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import datetime

Import("env")

SConscript("Controllers/SConscript")

if env["SCONS_STAGE"] == "build" :
	if not GetOption("help") and not env.get("HAVE_OPENSSL", 0) and not env.get("HAVE_SCHANNEL", 0) and not env.get("HAVE_SECURETRANSPORT", 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) :
		if "Swift" in env["PROJECTS"] :
			print "Warning: Swift requires Qt. Not building the Swift Qt application."
			env["PROJECTS"].remove("Swift")
	elif not GetOption("help") and env["target"] == "native" and "Swift" in env["PROJECTS"] :
		try :
			SConscript("QtUI/SConscript")
		except Exception as e:
			print "Warning: %s" % str(e) 
			env["PROJECTS"].remove("Swift")