mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 09:49:36 +01:00
More dedup
This commit is contained in:
parent
4609ab318c
commit
c88f83b471
17 changed files with 88 additions and 165 deletions
19
meson-utils/subprojects/meson.build
Normal file
19
meson-utils/subprojects/meson.build
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
foreach maybe_subproject_dep : deps_private_maybe_subproject
|
||||
if maybe_subproject_dep.type_name() == 'internal'
|
||||
deps_private_subproject += maybe_subproject_dep
|
||||
# subproject sadly no good for pkg-config module
|
||||
deps_other += maybe_subproject_dep
|
||||
else
|
||||
deps_private += maybe_subproject_dep
|
||||
endif
|
||||
endforeach
|
||||
|
||||
foreach maybe_subproject_dep : deps_public_maybe_subproject
|
||||
if maybe_subproject_dep.type_name() == 'internal'
|
||||
deps_public_subproject += maybe_subproject_dep
|
||||
# subproject sadly no good for pkg-config module
|
||||
deps_other += maybe_subproject_dep
|
||||
else
|
||||
deps_public += maybe_subproject_dep
|
||||
endif
|
||||
endforeach
|
||||
Loading…
Add table
Add a link
Reference in a new issue