From fa0276ae6165da0051cd34fdce17e6543c80267e Mon Sep 17 00:00:00 2001 From: Takahiro Ueda Date: Fri, 23 Aug 2019 19:23:08 +0900 Subject: [PATCH] Fix a typo in fetch.md Missing ")". --- chapters/projects/fetch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/projects/fetch.md b/chapters/projects/fetch.md index ded548e..5474003 100644 --- a/chapters/projects/fetch.md +++ b/chapters/projects/fetch.md @@ -4,7 +4,7 @@ Often, you would like to do your download of data or packages as part of the con The [FetchContent] module has excellent documentation that I won't try to repeat. The key ideas are: -* Use `FetchContent_Declare(MyName` to get data or a package. You can set URLs, Git repositories, and more. +* Use `FetchContent_Declare(MyName)` to get data or a package. You can set URLs, Git repositories, and more. * Use `FetchContent_GetProperties(MyName)` on the name you picked in the first step to get `MyName_*` variables. * Check `MyName_POPULATED`, and if not populated, use `FetchContent_Populate(MyName)` (and if a package, `add_subdirectory("${MyName_SOURCE_DIR}" "${MyName_BINARY_DIR}")`)