mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
The short answer for why we need to do this is so we can consistently do `#include "nix/..."`. Without this change, there are ways to still make that work, but they are hacky, and they have downsides such as making it harder to make sure headers from the wrong Nix library (e..g. `libnixexpr` headers in `libnixutil`) aren't being used. The C API alraedy used `nix_api_*`, so its headers are *not* put in subdirectories accordingly. Progress on #7876 We resisted doing this for a while because it would be annoying to not have the header source file pairs close by / easy to change file path/name from one to the other. But I am ameliorating that with symlinks in the next commit.
111 lines
2.8 KiB
Meson
111 lines
2.8 KiB
Meson
project('nix-cmd', 'cpp',
|
|
version : files('.version'),
|
|
default_options : [
|
|
'cpp_std=c++2a',
|
|
# TODO(Qyriad): increase the warning level
|
|
'warning_level=1',
|
|
'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('nix-meson-build-support/deps-lists')
|
|
|
|
configdata = configuration_data()
|
|
|
|
deps_private_maybe_subproject = [
|
|
]
|
|
deps_public_maybe_subproject = [
|
|
dependency('nix-util'),
|
|
dependency('nix-store'),
|
|
dependency('nix-fetchers'),
|
|
dependency('nix-expr'),
|
|
dependency('nix-flake'),
|
|
dependency('nix-main'),
|
|
]
|
|
subdir('nix-meson-build-support/subprojects')
|
|
|
|
nlohmann_json = dependency('nlohmann_json', version : '>= 3.9')
|
|
deps_public += nlohmann_json
|
|
|
|
lowdown = dependency('lowdown', version : '>= 0.9.0', required : get_option('markdown'))
|
|
deps_private += lowdown
|
|
configdata.set('HAVE_LOWDOWN', lowdown.found().to_int())
|
|
# The API changed slightly around terminal initialization.
|
|
configdata.set('HAVE_LOWDOWN_1_4', lowdown.version().version_compare('>= 1.4.0').to_int())
|
|
|
|
readline_flavor = get_option('readline-flavor')
|
|
if readline_flavor == 'editline'
|
|
editline = dependency('libeditline', 'editline', version : '>=1.14')
|
|
deps_private += editline
|
|
elif readline_flavor == 'readline'
|
|
readline = dependency('readline')
|
|
deps_private += readline
|
|
configdata.set(
|
|
'USE_READLINE',
|
|
1,
|
|
description: 'Use readline instead of editline',
|
|
)
|
|
else
|
|
error('illegal editline flavor', readline_flavor)
|
|
endif
|
|
|
|
config_h = configure_file(
|
|
configuration : configdata,
|
|
output : 'cmd-config-private.hh',
|
|
)
|
|
|
|
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.
|
|
'-include', 'nix/config-util.hh',
|
|
'-include', 'nix/config-store.hh',
|
|
'-include', 'nix/config-expr.hh',
|
|
language : 'cpp',
|
|
)
|
|
|
|
subdir('nix-meson-build-support/common')
|
|
|
|
sources = files(
|
|
'built-path.cc',
|
|
'command-installable-value.cc',
|
|
'command.cc',
|
|
'common-eval-args.cc',
|
|
'editor-for.cc',
|
|
'installable-attr-path.cc',
|
|
'installable-derived-path.cc',
|
|
'installable-flake.cc',
|
|
'installable-value.cc',
|
|
'installables.cc',
|
|
'legacy.cc',
|
|
'markdown.cc',
|
|
'misc-store-flags.cc',
|
|
'network-proxy.cc',
|
|
'repl-interacter.cc',
|
|
'repl.cc',
|
|
)
|
|
|
|
subdir('include/nix')
|
|
|
|
subdir('nix-meson-build-support/export-all-symbols')
|
|
subdir('nix-meson-build-support/windows-version')
|
|
|
|
this_library = library(
|
|
'nixcmd',
|
|
sources,
|
|
config_h,
|
|
dependencies : deps_public + deps_private + deps_other,
|
|
include_directories : include_dirs,
|
|
link_args: linker_export_flags,
|
|
prelink : true, # For C++ static initializers
|
|
install : true,
|
|
)
|
|
|
|
install_headers(headers, subdir : 'nix', preserve_path : true)
|
|
|
|
libraries_private = []
|
|
|
|
subdir('nix-meson-build-support/export')
|