Files
fourdst/meson.build
Emily Boudreaux ab2ae12281 feat(meson): More granular build options
fourdst's build system now exposes some options to allow fine grained
control of what is built and what is not
2025-11-28 11:00:51 -05:00

21 lines
442 B
Meson

project('fourdst', 'cpp', version: 'v0.9.9', 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')
subdir('build-python')
subdir('src-pybind')
endif