1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-12 21:46:01 +01:00

Fix a bunch of missing meson boilerplate

These other libraries need this too

(cherry picked from commit ffdce51cd5)
This commit is contained in:
John Ericson 2025-03-27 00:09:20 -04:00 committed by Mergify
parent 6f3dd6527d
commit 1763cf115b
5 changed files with 25 additions and 0 deletions

View file

@ -187,6 +187,9 @@ headers = [config_h] + files(
subdir('primops')
subdir('nix-meson-build-support/export-all-symbols')
subdir('nix-meson-build-support/windows-version')
this_library = library(
'nixexpr',
sources,
@ -194,6 +197,8 @@ this_library = library(
lexer_tab,
generated_headers,
dependencies : deps_public + deps_private + deps_other,
include_directories : include_dirs,
link_args: linker_export_flags,
prelink : true, # For C++ static initializers
install : true,
)