blob: 14600910aef86648c312ddaa1b4e1ea4c480aac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import datetime
Import("env")
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")
SConscript("Controllers/SConscript")
if env["target"] == "native":
SConscript("QtUI/SConscript")
|