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
- Host: GitHub
- URL: https://github.com/opengs/phtree-cmake
- Owner: opengs
- Created: 2021-09-02T10:45:29.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-02T11:38:19.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T03:28:29.513Z (5 months ago)
- Language: C++
- Size: 48.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```