Aegisub/subprojects/packagefiles/hunspell/meson.build
Myaamori c43e4fba3c meson: add Hunspell port
This moves the visibility logic (HUNSPELL_STATIC/BUILDING_LIBHUNSPELL)
to the build system. Only relevant on Windows.
2021-05-21 21:09:36 -04:00

10 lines
308 B
Meson

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)