diff --git a/RepoMan.cmake b/RepoMan.cmake index 825d377..504c02d 100755 --- a/RepoMan.cmake +++ b/RepoMan.cmake @@ -16,13 +16,13 @@ Including the module is sufficient. It will automatically look for a dependencie 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 "") include(RepoMan)