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:
commit
4728840ca8
12 changed files with 685 additions and 3 deletions
19
src/libstore/unix/meson.build
Normal file
19
src/libstore/unix/meson.build
Normal 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',
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue