blob: c0b14bfe59c49a04393a021db46139a553f5f8ab (
plain)
1
2
3
4
5
6
7
8
|
Import("env")
if not env.get("HAVE_OPENSSL", 0) :
print "Error: Swift requires OpenSSL support, and OpenSSL was not found."
Exit(1)
SConscript("Controllers/SConscript")
SConscript("QtUI/SConscript")
|