Skip to content

Commit

Permalink
Added google/benchmark submodule.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmumford committed Nov 30, 2020
1 parent 2802398 commit 37d36c9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "third_party/googletest"]
path = third_party/googletest
url = https://github.com/google/googletest.git
[submodule "third_party/benchmark"]
path = third_party/benchmark
url = https://github.com/google/benchmark
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ if(LEVELDB_BUILD_TESTS)
# This project is tested using GoogleTest.
add_subdirectory("third_party/googletest")

add_subdirectory("third_party/benchmark")

# GoogleTest triggers a missing field initializers warning.
if(LEVELDB_HAVE_NO_MISSING_FIELD_INITIALIZERS)
set_property(TARGET gtest
Expand All @@ -318,7 +320,7 @@ if(LEVELDB_BUILD_TESTS)

"${test_file}"
)
target_link_libraries("${test_target_name}" leveldb gmock gtest)
target_link_libraries("${test_target_name}" leveldb gmock gtest benchmark)
target_compile_definitions("${test_target_name}"
PRIVATE
${LEVELDB_PLATFORM_NAME}=1
Expand Down
1 change: 1 addition & 0 deletions third_party/benchmark
Submodule benchmark added at bf585a

0 comments on commit 37d36c9

Please sign in to comment.