1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 00:51:47 +02:00

Hack together a fix for the public headers

Please fix this.
This commit is contained in:
Robert Hensing 2025-04-05 00:46:06 +02:00
parent 59ced3da96
commit 2b51250534
8 changed files with 33 additions and 1 deletions

View file

@ -79,6 +79,11 @@ config_priv_h = configure_file(
output : 'expr-config-private.hh',
)
config_pub_h = configure_file(
configuration : configdata_pub,
output : 'expr-config.hh',
)
subdir('nix-meson-build-support/common')
parser_tab = custom_target(
@ -163,6 +168,8 @@ subdir('primops')
subdir('nix-meson-build-support/export-all-symbols')
subdir('nix-meson-build-support/windows-version')
headers += [config_pub_h]
this_library = library(
'nixexpr',
sources,
@ -181,4 +188,8 @@ install_headers(headers, subdir : 'nix/expr', preserve_path : true)
libraries_private = []
nixexpr_dep = declare_dependency(
include_directories : include_directories('.'),
link_with : this_library,
)
subdir('nix-meson-build-support/export')