1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 22:01:15 +02:00

Fix a bunch of missing meson boilerplate

These other libraries need this too
This commit is contained in:
John Ericson 2025-03-27 00:09:20 -04:00
parent 1df69c3920
commit ffdce51cd5
5 changed files with 25 additions and 0 deletions

View file

@ -68,11 +68,16 @@ headers = files(
'flake/url-name.hh',
)
subdir('nix-meson-build-support/export-all-symbols')
subdir('nix-meson-build-support/windows-version')
this_library = library(
'nixflake',
sources,
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,
)