Update README.md

This commit is contained in:
greg
2019-06-15 20:21:12 -04:00
parent ed32145de8
commit 2c8470fcce
Vendored
+4
View File
@@ -25,6 +25,8 @@ This repository aims to provide an set of excellent hash map implementations, wi
- Automatic support for **boost's hash_value()** method for providing the hash function (see `examples/hash_value.h`).
- **natvis** visualization support in Visual Studio
## Fast *and* memory friendly
@@ -38,6 +40,8 @@ The hashmaps provided here are built upon those open sourced by Google in the Ab
Copy the parallel_hashmap directory to your project. Update your include path. That's all.
If you are using Visual Studio, you probably want to add `phmap.natvis` to your projects. This will allow for a clear display of the hash table contents in the debugger.
> A cmake configuration files (CMakeLists.txt) is provided for building the tests and examples. Command for building and running the tests is: `mkdir build && cd build && cmake -DPHMAP_BUILD_TESTS=ON -DPHMAP_BUILD_EXAMPLES=ON .. && cmake --build . && make test`
## Example