We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd62c63 commit f4687ddCopy full SHA for f4687dd
3 files changed
.gitignore
@@ -7,6 +7,7 @@ cache/
7
8
# IDE
9
.vs/
10
+.vscode/
11
.cache/
12
# Kdevelop
13
.kdev4/
README.md
@@ -165,4 +165,3 @@ Apache 2. See the LICENSE file for details.
165
166
This is not an official Google product, it is just code that happens to be
167
owned by Google.
168
-
cmake/check_deps.cmake
@@ -44,12 +44,12 @@ set(ABSL_DEPS
44
if(NOT TARGET re2::re2)
45
message(FATAL_ERROR "Target re2::re2 not available.")
46
endif()
47
+set(RE2_DEPS re2::re2)
48
49
if(NOT TARGET protobuf::libprotobuf)
50
message(FATAL_ERROR "Target protobuf::libprotobuf not available.")
51
52
53
# CXX Test
54
if(BUILD_TESTING)
55
if(NOT TARGET GTest::gtest_main)
0 commit comments