An open API service indexing awesome lists of open source software.

https://github.com/opengs/phtree-cmake

C++ PH-tree with user-friendly cmake file
https://github.com/opengs/phtree-cmake

Last synced: 4 months ago
JSON representation

C++ PH-tree with user-friendly cmake file

Awesome Lists containing this project

README

        

## PH-Tree cmake friendly library

Copy of library https://github.com/improbable-eng/phtree-cpp with friendy cmake

### Usage
#### Install
```
mkdir build
cd build
cmake ..
cmake --install .
```

#### Usage
```
project("example")

find_package(phtree CONFIG REQUIRED)

add_executable(${PROJECT_NAME} src/main.cc)
target_link_libraries(${PROJECT_NAME} phtree::phtree)
```