1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 16:29:36 +01:00

Merge pull request #10908 from NixOS/meson-libstore

Build `nix-store` with Meson, adjust Perl bindings deps to integrate with other meson builds
This commit is contained in:
John Ericson 2024-06-14 12:16:14 -04:00 committed by GitHub
commit 4728840ca8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 685 additions and 3 deletions

View file

@ -0,0 +1,19 @@
sources += files(
'build/child.cc',
'build/hook-instance.cc',
'build/local-derivation-goal.cc',
'pathlocks.cc',
'user-lock.cc',
)
include_dirs += include_directories(
'.',
'build',
)
headers += files(
'build/child.hh',
'build/hook-instance.hh',
'build/local-derivation-goal.hh',
'user-lock.hh',
)