Fix hunspell include and wrap

This commit is contained in:
arch1t3cht 2023-11-24 20:53:07 +01:00
parent 4576ac0638
commit 18d088c479
3 changed files with 3 additions and 3 deletions

View File

@ -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))

View File

@ -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)

View File

@ -21,3 +21,5 @@ endif
hunspell = library('hunspell', hunspell_sources,
cpp_args: cpp_args + compile_args)
inc = include_directories('.')