File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
3535# Must include options required for this project as well as any
3636# projects included in this one by FetchContent.
3737#
38+ set (TRITON_REPO_ORGANIZATION "https://github.com/triton-inference-server" CACHE STRING "Git repository to pull from" )
3839set (TRITON_COMMON_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/common repo" )
3940set (TRITON_CORE_REPO_TAG "main" CACHE STRING "Tag for triton-inference-server/core repo" )
4041
@@ -52,13 +53,13 @@ include(FetchContent)
5253
5354FetchContent_Declare (
5455 repo-common
55- GIT_REPOSITORY https://github.com/triton-inference-server /common.git
56+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /common.git
5657 GIT_TAG ${TRITON_COMMON_REPO_TAG}
5758 GIT_SHALLOW ON
5859)
5960FetchContent_Declare (
6061 repo-core
61- GIT_REPOSITORY https://github.com/triton-inference-server /core.git
62+ GIT_REPOSITORY ${TRITON_REPO_ORGANIZATION} /core.git
6263 GIT_TAG ${TRITON_CORE_REPO_TAG}
6364 GIT_SHALLOW ON
6465)
You can’t perform that action at this time.
0 commit comments