feat(3p/nix): Add some initial Abseil build targets
These make it possible to link to Abseil strings.
This commit is contained in:
parent
6dfef31374
commit
fed31b2c9b
3 changed files with 13 additions and 10 deletions
4
third_party/nix/meson.build
vendored
4
third_party/nix/meson.build
vendored
|
@ -348,6 +348,10 @@ description : 'Whether link() works on symlinks')
|
||||||
# This will need to change if //third_party/nix is every split out as
|
# This will need to change if //third_party/nix is every split out as
|
||||||
# a subtree.
|
# a subtree.
|
||||||
absl = cmake.subproject('abseil_cpp')
|
absl = cmake.subproject('abseil_cpp')
|
||||||
|
absl_base = absl.dependency('base')
|
||||||
|
absl_raw_logging = absl.dependency('raw_logging_internal')
|
||||||
|
absl_int128 = absl.dependency('int128')
|
||||||
|
absl_strings = absl.dependency('strings')
|
||||||
|
|
||||||
# Look for boost, a required dependency.
|
# Look for boost, a required dependency.
|
||||||
#--------------------------------------------------
|
#--------------------------------------------------
|
||||||
|
|
2
third_party/nix/meson_options.txt
vendored
2
third_party/nix/meson_options.txt
vendored
|
@ -11,8 +11,6 @@ option(
|
||||||
description : 'path of the Nix store (defaults to /nix/store)')
|
description : 'path of the Nix store (defaults to /nix/store)')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# compiler args
|
# compiler args
|
||||||
#============================================================================
|
#============================================================================
|
||||||
|
|
||||||
|
|
3
third_party/nix/src/libutil/meson.build
vendored
3
third_party/nix/src/libutil/meson.build
vendored
|
@ -46,7 +46,8 @@ libutil_dep_list = [
|
||||||
libbrotli_dep,
|
libbrotli_dep,
|
||||||
openssl_dep,
|
openssl_dep,
|
||||||
pthread_dep,
|
pthread_dep,
|
||||||
libsodium_dep]
|
libsodium_dep,
|
||||||
|
]
|
||||||
|
|
||||||
libutil_link_list = []
|
libutil_link_list = []
|
||||||
libutil_link_args = []
|
libutil_link_args = []
|
||||||
|
|
Loading…
Add table
Reference in a new issue