Brought in libcomposition v2.2.1 and libplugin v0.3.5 which resolve gcc build errors and warnings
20 lines
422 B
Meson
20 lines
422 B
Meson
project('fourdst', 'cpp', version: 'v0.9.8', 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
|
|
subdir('build-python')
|
|
|
|
# Build python bindings
|
|
subdir('src-pybind')
|
|
|