From 1872cb0faf700a6866c89a1e9f2b0c0f01084ce7 Mon Sep 17 00:00:00 2001 From: Markus Werle Date: Mon, 24 Jun 2024 01:05:14 +0200 Subject: [PATCH] fix typos in doc string --- RepoMan.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/RepoMan.cmake b/RepoMan.cmake index 504c02d..ebfa7f2 100755 --- a/RepoMan.cmake +++ b/RepoMan.cmake @@ -41,13 +41,13 @@ Alternatively, you can also include it via add_subdirectory() or provide it via set(REPOMAN_DEPENDENCIES_USE_WORKSPACE ON CACHE BOOL "") # Optional: set a custom name and/or location for the workspace - set(REPOMAN_DEPENDENCIES_WORKSPACE "../"CACHE PATH "") # use automatically generated directory name next to current project - set(REPOMAN_DEPENDENCIES_WORKSPACE "../my_ws"CACHE PATH "") # use custom directory name next to current project - set(REPOMAN_DEPENDENCIES_WORKSPACE "my_ws"CACHE PATH "") # use custom name inside current project build directory - set(REPOMAN_DEPENDENCIES_WORKSPACE "/home/dev/sources/my_ws"CACHE PATH "") # use absolute path + set(REPOMAN_DEPENDENCIES_WORKSPACE "../" CACHE PATH "") # use automatically generated directory name next to current project + set(REPOMAN_DEPENDENCIES_WORKSPACE "../my_ws" CACHE PATH "") # use custom directory name next to current project + set(REPOMAN_DEPENDENCIES_WORKSPACE "my_ws" CACHE PATH "") # use custom name inside current project build directory + set(REPOMAN_DEPENDENCIES_WORKSPACE "/home/dev/sources/my_ws" CACHE PATH "") # use absolute path # Optional: use a custom file name for dependency files - set(REPOMAN_DEPENDENCIES_FILE_NAME "my_deps.txt"CACHE STRING "") + set(REPOMAN_DEPENDENCIES_FILE_NAME "my_deps.txt" CACHE STRING "") FetchContent_MakeAvailable(cmake_utilities)