docs(docs): regenerated for version v0.2.1

This commit is contained in:
2026-03-20 13:27:11 -04:00
parent e46badd5c1
commit caff2ea204
331 changed files with 28608 additions and 0 deletions

29
meson.build Normal file
View File

@@ -0,0 +1,29 @@
project('stroid', 'cpp', meson_version : '>= 1.3.0', version : 'v0.2.1', default_options : ['cpp_std=c++23'])
subdir('build-check')
subdir('build-config')
subdir('src')
if get_option('build_tests')
subdir('tests')
endif
if get_option('build_tools')
subdir('tools')
endif
if get_option('pkg_config')
pkg = import('pkgconfig')
pkg.generate(
name: 'stroid',
description: 'Stroid multi-block curvilinear mesh generation library',
version: meson.project_version(),
libraries: [
stroid_lib
],
subdirs: ['stroid'],
filebase: 'stroid',
install_dir: join_paths(get_option('libdir'), 'pkgconfig')
)
endif