Merge branch 'bugfixes' into feature
This commit is contained in:
commit
8947e20dbb
3 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@
|
|||
#include <boost/range/algorithm.hpp>
|
||||
|
||||
#undef near
|
||||
#include <hunspell/hunspell.hxx>
|
||||
#include <hunspell.hxx>
|
||||
|
||||
HunspellSpellChecker::HunspellSpellChecker()
|
||||
: lang_listener(OPT_SUB("Tool/Spell Checker/Language", &HunspellSpellChecker::OnLanguageChanged, this))
|
||||
|
|
|
@ -2,8 +2,6 @@ project('Hunspell', 'cpp', version: '1.7.0', meson_version: '>=0.57.0')
|
|||
|
||||
subdir('src/hunspell')
|
||||
|
||||
inc = include_directories('src')
|
||||
|
||||
hunspell_dep = declare_dependency(link_with: hunspell,
|
||||
include_directories: inc,
|
||||
compile_args: compile_args)
|
||||
|
|
|
@ -21,3 +21,5 @@ endif
|
|||
|
||||
hunspell = library('hunspell', hunspell_sources,
|
||||
cpp_args: cpp_args + compile_args)
|
||||
|
||||
inc = include_directories('.')
|
Loading…
Reference in a new issue