git-subtree-dir: third_party/unordered_dense git-subtree-split: 231e48c9426bd21c273669e5fdcd042c146975cf
17 lines
410 B
Markdown
17 lines
410 B
Markdown
A simple example that demonstrats how to make use of `unordered_dense` with cmake.
|
|
|
|
Use globally installed `unordered_dense`:
|
|
```sh
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=${HOME}/unordered_dense_install ..
|
|
make
|
|
```
|
|
|
|
Use locall installed `unordered_dense`, as in the main README.md:
|
|
|
|
```sh
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=${HOME}/unordered_dense_install ..
|
|
make
|
|
```
|