fix(cuviliniear.cpp): removed unused BSD proc header

This commit is contained in:
2026-03-20 13:26:18 -04:00
parent 321abd63bb
commit e46badd5c1
329 changed files with 1 additions and 28723 deletions

View File

@@ -1,29 +0,0 @@
project('stroid', 'cpp', meson_version : '>= 1.3.0', version : 'v0.2.0', 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