preprocessor/meson.build

14 lines
423 B
Meson
Raw Normal View History

# Meson file for building the preprocessor in a standalone fashion.
# It is not used when building Dynare as a whole.
2023-05-29 19:10:47 +02:00
project('dynare-preprocessor', 'cpp',
version : '6-unstable',
default_options : [ 'cpp_std=gnu++20', 'warning_level=2' ])
add_global_arguments('-DPACKAGE_VERSION="' + meson.project_version() + '"', language : 'cpp')
cpp_compiler = meson.get_compiler('cpp')
subdir('src')
subdir('doc')