Skip to content
Snippets Groups Projects
Unverified Commit 579f2879 authored by zhangxy988's avatar zhangxy988 Committed by GitHub
Browse files

Merge pull request #51 from behrenhoff/master

Fix CMakeLists.txt for ostringstream_test
parents 3562f9bb 56d970fd
No related branches found
No related tags found
No related merge requests found
...@@ -49,6 +49,7 @@ list(APPEND STRINGS_SRC ...@@ -49,6 +49,7 @@ list(APPEND STRINGS_SRC
"internal/memutil.cc" "internal/memutil.cc"
"internal/memutil.h" "internal/memutil.h"
"internal/utf8.cc" "internal/utf8.cc"
"internal/ostringstream.cc"
"match.cc" "match.cc"
"numbers.cc" "numbers.cc"
"str_cat.cc" "str_cat.cc"
...@@ -205,12 +206,15 @@ absl_test( ...@@ -205,12 +206,15 @@ absl_test(
# test ostringstream_test # test ostringstream_test
set(OSTRINGSTREAM_TEST_SRC "internal/ostringstream_test.cc") set(OSTRINGSTREAM_TEST_SRC "internal/ostringstream_test.cc")
set(OSTRINGSTREAM_TEST_PUBLIC_LIBRARIES absl::strings)
absl_test( absl_test(
TARGET TARGET
ostringstream_test ostringstream_test
SOURCES SOURCES
${OSTRINGSTREAM_TEST_SRC} ${OSTRINGSTREAM_TEST_SRC}
PUBLIC_LIBRARIES
${OSTRINGSTREAM_TEST_PUBLIC_LIBRARIES}
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment