summaryrefslogtreecommitdiffstats
blob: 0064eee34ca99cb228526c379a21d38eaf09aaee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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."
		Exit(1)

	if env["target"] == "native":
		 SConscript("QtUI/SConscript")