diff options
author | Tobias Markmann <tm@ayena.de> | 2013-03-25 22:12:52 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2013-03-26 22:31:39 (GMT) |
commit | 20ead0a84fdd8c9e870e98ee6a2712bfa263d7fb (patch) | |
tree | 537b08f35ba08de612856d8376e171766212b98a /SwifTools/SConscript | |
parent | 99063cc6e9168bf88d6c245d1f8bac02bd898c3d (diff) | |
download | swift-20ead0a84fdd8c9e870e98ee6a2712bfa263d7fb.zip swift-20ead0a84fdd8c9e870e98ee6a2712bfa263d7fb.tar.bz2 |
Adding basic support for native spell checking on Mac OS X.
Change-Id: Id29313a06f052ecbaef54be0c185cd7f1df375a2
License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details.
Diffstat (limited to 'SwifTools/SConscript')
-rw-r--r-- | SwifTools/SConscript | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/SwifTools/SConscript b/SwifTools/SConscript index eaf5787..b30a79c 100644 --- a/SwifTools/SConscript +++ b/SwifTools/SConscript @@ -41,6 +41,12 @@ if env["SCONS_STAGE"] == "build" : "HunspellChecker.cpp", "SpellParser.cpp", ] + elif swiftools_env["PLATFORM"] == "darwin" : + sources += [ + "SpellCheckerFactory.cpp", + "MacOSXChecker.mm", + "SpellParser.cpp", + ] if swiftools_env.get("HAVE_SPARKLE", 0) : |