Skip to content

Commit

Permalink
fix typos in doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
daixtrose committed Jun 23, 2024
1 parent 98da542 commit 1872cb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions RepoMan.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 1872cb0

Please sign in to comment.