diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-03-02 10:15:30 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-03-02 14:11:00 (GMT) |
commit | 1e55d19a900dae82947e18387cc695262b10ce26 (patch) | |
tree | 4ae56742430f399d7b68e5b411273830fc97b697 /Swift/SConscript | |
parent | c1b98cacaf627481d13f974e3cd6653feabf41f7 (diff) | |
download | swift-1e55d19a900dae82947e18387cc695262b10ce26.zip swift-1e55d19a900dae82947e18387cc695262b10ce26.tar.bz2 |
Adding iPhone compilation
Diffstat (limited to 'Swift/SConscript')
-rw-r--r-- | Swift/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swift/SConscript b/Swift/SConscript index 32f9b64..1460091 100644 --- a/Swift/SConscript +++ b/Swift/SConscript @@ -10,4 +10,6 @@ if not GetOption("help") and not env.get("HAVE_OPENSSL", 0) : env["SWIFT_VERSION"] = "0.9.9." + datetime.date.today().strftime("%Y%m%d") SConscript("Controllers/SConscript") -SConscript("QtUI/SConscript") + +if env["target"] == "native": + SConscript("QtUI/SConscript") |