feat(3p/nix): Add some initial Abseil build targets

These make it possible to link to Abseil strings.
This commit is contained in:
Vincent Ambo 2020-05-20 04:02:23 +01:00
parent 6dfef31374
commit fed31b2c9b
3 changed files with 13 additions and 10 deletions

View file

@ -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.
#-------------------------------------------------- #--------------------------------------------------

View file

@ -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
#============================================================================ #============================================================================

View file

@ -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 = []