aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2018-02-05 18:08:10 -0800
committerRobert Schumacher <roschuma@microsoft.com>2018-02-05 18:08:10 -0800
commit3eee61838a0275dbbd0d47835f710a19c7f85572 (patch)
treed1451ce8eefc558b8c71c7a606df45dd9c62f1c4
parentefedd6f299e07f2ddb49e3e2af6040431febf8dc (diff)
downloadvcpkg-3eee61838a0275dbbd0d47835f710a19c7f85572.tar.gz
vcpkg-3eee61838a0275dbbd0d47835f710a19c7f85572.zip
[abseil] Add *.inc files. Fixes #2718
-rw-r--r--ports/abseil/CMakeLists.txt2
-rw-r--r--ports/abseil/CONTROL2
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/abseil/CMakeLists.txt b/ports/abseil/CMakeLists.txt
index de9ce8c52..c30f75e32 100644
--- a/ports/abseil/CMakeLists.txt
+++ b/ports/abseil/CMakeLists.txt
@@ -15,7 +15,7 @@ endif()
function(add_sublibrary LIB)
file(GLOB_RECURSE SOURCES "absl/${LIB}/*.cc")
list(FILTER SOURCES EXCLUDE REGEX "_test(ing)?(_.+)?.cc$|_nonprod.cc$")
- file(GLOB HEADERS "absl/${LIB}/*.h")
+ file(GLOB HEADERS "absl/${LIB}/*.h" "absl/${LIB}/*.inc")
file(GLOB INTERNAL_HEADERS "absl/${LIB}/internal/*.h")
if(SOURCES)
diff --git a/ports/abseil/CONTROL b/ports/abseil/CONTROL
index 2e0345619..4fb0dea0c 100644
--- a/ports/abseil/CONTROL
+++ b/ports/abseil/CONTROL
@@ -1,5 +1,5 @@
Source: abseil
-Version: 2017-11-10
+Version: 2017-11-10-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.