blob: 8f1fa26d7f7f08acea8da736cbcb4ca46a4db77f (
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."
Exit(1)
env["SWIFT_VERSION"] = "0.9.9." + datetime.date.today().strftime("%Y%m%d")
if env["target"] == "native":
SConscript("QtUI/SConscript")
|