2025-12-20 14:49:27 -05:00
|
|
|
project('fourdst', 'cpp', version: 'v0.9.18', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
|
2025-07-22 13:51:43 -04:00
|
|
|
|
|
|
|
|
add_project_arguments('-fvisibility=default', language: 'cpp')
|
|
|
|
|
|
2025-08-06 11:54:01 -04:00
|
|
|
|
2025-07-22 13:51:43 -04:00
|
|
|
# Configure vendor libraries
|
|
|
|
|
subdir('build-config')
|
|
|
|
|
|
|
|
|
|
# Configure python bindings
|
2025-12-03 11:27:01 -05:00
|
|
|
if get_option('build_python')
|
2025-11-28 11:00:51 -05:00
|
|
|
subdir('build-python')
|
|
|
|
|
endif
|
2025-08-09 18:48:34 -04:00
|
|
|
|