project('nix-util-c', 'cpp', version : files('.version'), default_options : [ 'cpp_std=c++2a', # TODO(Qyriad): increase the warning level 'warning_level=1', 'debug=true', 'optimization=2', 'errorlogs=true', # Please print logs for tests that fail ], meson_version : '>= 1.1', license : 'LGPL-2.1-or-later', ) cxx = meson.get_compiler('cpp') subdir('meson-utils/deps-lists') configdata = configuration_data() deps_private_maybe_subproject = [ dependency('nix-util'), ] deps_public_maybe_subproject = [ ] subdir('meson-utils/subprojects') # TODO rename, because it will conflict with downstream projects configdata.set_quoted('PACKAGE_VERSION', meson.project_version()) config_h = configure_file( configuration : configdata, output : 'config-util.h', ) add_project_arguments( # TODO(Qyriad): Yes this is how the autoconf+Make system did it. # It would be nice for our headers to be idempotent instead. # From C++ libraries, only for internals '-include', 'config-util.hh', # From C libraries, for our public, installed headers too '-include', 'config-util.h', '-Wno-deprecated-declarations', '-Wimplicit-fallthrough', '-Werror=switch', '-Werror=switch-enum', '-Werror=unused-result', '-Wdeprecated-copy', '-Wignored-qualifiers', # Enable assertions in libstdc++ by default. Harmless on libc++. Benchmarked # at ~1% overhead in `nix search`. # # FIXME: remove when we get meson 1.4.0 which will default this to on for us: # https://mesonbuild.com/Release-notes-for-1-4-0.html#ndebug-setting-now-controls-c-stdlib-assertions '-D_GLIBCXX_ASSERTIONS=1', language : 'cpp', ) sources = files( 'nix_api_util.cc', ) include_dirs = [include_directories('.')] headers = [config_h] + files( 'nix_api_util.h', ) subdir('meson-utils/export-all-symbols') this_library = library( 'nixutilc', sources, dependencies : deps_public + deps_private + deps_other, include_directories : include_dirs, link_args: linker_export_flags, install : true, ) install_headers(headers, subdir : 'nix', preserve_path : true) libraries_private = [] subdir('meson-utils/export')