diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b31dba..c9783a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,6 +55,8 @@ if (PHMAP_BUILD_TESTS) check_target(gtest_main) check_target(gmock) + enable_testing() + ## ---------------- regular hash maps ---------------------------- phmap_cc_test(NAME compressed_tuple SRCS "tests/compressed_tuple_test.cc" DEPS gmock_main) diff --git a/README.md b/README.md index fc09d68..5b192f1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# The Parallel Hashmap: Very fast, and memory friendly as well +# The Parallel Hashmap: very fast, very memory friendly Click here [For a full writeup explaining the design and benefits of the Parallel Hashmap](https://greg7mdp.github.io/parallel-hashmap/).