diff options
author | Kevin Smith <git@kismith.co.uk> | 2015-06-27 16:26:37 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2015-07-01 08:07:38 (GMT) |
commit | d65daf31d58ad432dadb1639f05a0d7f7f367d01 (patch) | |
tree | 96f0e4648284046f448520ab31f57580d7f73b7c /Swift/SConscript | |
parent | 208c75672fa106fe6e3a44bcb41dc9f2808b1b71 (diff) | |
download | swift-d65daf31d58ad432dadb1639f05a0d7f7f367d01.zip swift-d65daf31d58ad432dadb1639f05a0d7f7f367d01.tar.bz2 |
Don't incorrectly claim that non of Swift is built without Qt
Test-Information:
Building on a system without Qt now says that the application
is all that isn't compiled. Swift/Controllers still compiles if requested
(as before).
Change-Id: I24631f6ba2bf3475a1a6456207c1da94f1b3f1c0
Diffstat (limited to 'Swift/SConscript')
-rw-r--r-- | Swift/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/SConscript b/Swift/SConscript index cee3a74..9f1a213 100644 --- a/Swift/SConscript +++ b/Swift/SConscript @@ -10,8 +10,8 @@ if env["SCONS_STAGE"] == "build" : if "Swift" in env["PROJECTS"] : env["PROJECTS"].remove("Swift") elif not GetOption("help") and not env.get("HAVE_QT", 0) : - print "Error: Swift requires Qt. Not building Swift." if "Swift" in env["PROJECTS"] : + print "Warning: Swift requires Qt. Not building the Swift Qt application." env["PROJECTS"].remove("Swift") elif env["target"] == "native": SConscript("QtUI/SConscript") |