project('4DSSE', 'cpp', version: '0.0.1a', default_options: ['cpp_std=c++23'], meson_version: '>=1.6.0') # Add default visibility for all C++ targets add_project_arguments('-fvisibility=default', language: 'cpp') # Build external dependencies first so that all the embedded resources are available to the other targets subdir('build-config') # Build the main project subdir('src') if get_option('build_tests') subdir('tests') endif