diff options
| author | Phil Christensen <philc@microsoft.com> | 2018-12-04 14:59:48 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-04 14:59:48 -0800 |
| commit | 7da86a7fbcb2d5c92bbd0f7196d4428bdbabb7e0 (patch) | |
| tree | 11b5f689ffca68a3cc5e55c9f811cc6a116dde5f | |
| parent | 14caaa2412a54167b9988c0aeb2a15cd2348ae37 (diff) | |
| parent | 8a71f22e88afe45b0c3efe3c2141a721ecaace6a (diff) | |
| download | vcpkg-7da86a7fbcb2d5c92bbd0f7196d4428bdbabb7e0.tar.gz vcpkg-7da86a7fbcb2d5c92bbd0f7196d4428bdbabb7e0.zip | |
Merge pull request #4873 from kjpus/patch-1
[abseil] Update CMakeLists.txt to install hash/*
| -rw-r--r-- | ports/abseil/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | ports/abseil/CONTROL | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ports/abseil/CMakeLists.txt b/ports/abseil/CMakeLists.txt index b4b8a646d..d98914e60 100644 --- a/ports/abseil/CMakeLists.txt +++ b/ports/abseil/CMakeLists.txt @@ -62,6 +62,7 @@ add_sublibrary(algorithm) add_sublibrary(base) add_sublibrary(container) add_sublibrary(debugging) +add_sublibrary(hash) add_sublibrary(memory) add_sublibrary(meta) add_sublibrary(numeric) @@ -75,6 +76,7 @@ add_sublibrary(utility) target_link_public_libraries(algorithm base meta) target_link_public_libraries(container algorithm base memory) target_link_public_libraries(debugging base) +target_link_public_libraries(hash base) target_link_public_libraries(memory meta) target_link_public_libraries(meta base) target_link_public_libraries(numeric base) diff --git a/ports/abseil/CONTROL b/ports/abseil/CONTROL index f616b8608..95191fcf0 100644 --- a/ports/abseil/CONTROL +++ b/ports/abseil/CONTROL @@ -1,5 +1,5 @@ Source: abseil
-Version: 2018-11-08 +Version: 2018-11-08-1 Description: an open-source collection designed to augment the C++ standard library.
Abseil is an open-source collection of C++ library code designed to augment the C++ standard library. The Abseil library code is collected from Google's own C++ code base, has been extensively tested and used in production, and is the same code we depend on in our daily coding lives.
In some cases, Abseil provides pieces missing from the C++ standard; in others, Abseil provides alternatives to the standard for special needs we've found through usage in the Google code base. We denote those cases clearly within the library code we provide you.
|
