summaryrefslogtreecommitdiff
path: root/src/third_party/abseil-cpp-master/SConscript
blob: 3229e391f700b491fdaf70a4e2d1dc875e8b02df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Import("env")

env = env.Clone()

env.InjectThirdParty(libraries=['abseil-cpp'])

env.Library(
    target="absl_hash",
    source=[
        "abseil-cpp/absl/hash/internal/city.cc",
        "abseil-cpp/absl/hash/internal/hash.cc",
    ]
)

env.Library(
    target="absl_container",
    source=[
        "abseil-cpp/absl/container/internal/raw_hash_set.cc",
    ],
    LIBDEPS=[
        "absl_hash",
    ]
)