We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c28295b commit 9eb1142Copy full SHA for 9eb1142
README.md
@@ -56,9 +56,11 @@ You can use for example FetchContent :
56
```cmake
57
include(FetchContent)
58
59
-FetchContent_Declare(yaml-cpp
+FetchContent_Declare(
60
+ yaml-cpp
61
GIT_REPOSITORY https://github.com/jbeder/yaml-cpp.git
- GIT_TAG 1b50109f7bea60bd382d8ea7befce3d2bd67da5f) # The latest yaml-cpp commit at the time of writing.
62
+ GIT_TAG <tag_name> # Can be a tag (yaml-cpp-x.x.x), a commit hash, or a branch name (master)
63
+)
64
FetchContent_GetProperties(yaml-cpp)
65
66
if(NOT yaml-cpp_POPULATED)
0 commit comments