fix(wasm): propegate all build flags

This commit is contained in:
2025-12-03 11:27:01 -05:00
parent 2caf46c984
commit 979ec80dc4
8 changed files with 47 additions and 34 deletions

View File

@@ -1,18 +1,13 @@
project('fourdst', 'cpp', version: 'v0.9.12', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
project('fourdst', 'cpp', version: 'v0.9.13', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
add_project_arguments('-fvisibility=default', language: 'cpp')
pkg_config_bool_str = 'false'
if get_option('pkg-config')
pkg_config_bool_str = 'true'
endif
# Configure vendor libraries
subdir('build-config')
# Configure python bindings
if get_option('build-python')
if get_option('build_python')
subdir('build-python')
subdir('src-pybind')