Skip to content

Commit 32376f6

Browse files
committed
Update README [ci skip]
1 parent 318451e commit 32376f6

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
tags-ignore: v*.*
55
branches:
66
- '*'
7+
- '*/*'
78
pull_request:
89
branches:
910
- '*'

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,14 @@
2222

2323
### Requirements
2424

25-
1. CMake 3.17+
2625
1. C++17
26+
1. CMake 3.17+ [optional]
2727

2828
### Steps
2929

3030
1. Copy [include/forest/forest.hpp](include/forest/forest.hpp) into your build tree, or
31-
1. Use CMake to:
32-
1. `add_subdirectory(path/to/forest)` or `find_package(forest)` (if installed and visible to CMake)
33-
1. `target_link_libraries(your_project PRIVATE forest::forest)`
31+
1. Use CMake:
32+
1. Import `forest`
33+
1. Add `forest` to build tree via `add_subdirectory(path/to/forest)`, or
34+
1. Locate `forest` via `find_package(forest)` (must be installed to a path in `CMAKE_INSTALL_PREFIX`)
35+
1. Link to `forest` via `target_link_libraries(your_project PRIVATE forest::forest)` (use `PUBLIC` instead to propagate include paths to all dependencies)

0 commit comments

Comments
 (0)