summaryrefslogtreecommitdiff
path: root/indra/cmake/DepsBuild.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'indra/cmake/DepsBuild.cmake')
-rw-r--r--indra/cmake/DepsBuild.cmake17
1 files changed, 0 insertions, 17 deletions
diff --git a/indra/cmake/DepsBuild.cmake b/indra/cmake/DepsBuild.cmake
deleted file mode 100644
index f4d80e9a67..0000000000
--- a/indra/cmake/DepsBuild.cmake
+++ /dev/null
@@ -1,17 +0,0 @@
-# -*- cmake -*-
-find_program(GIT git)
-
-macro( checkout_deps_repository DEPSREPO DEPSDIR DEPSTAG)
- execute_process(
- COMMAND ${GIT} "clone" ${DEPSREPO} ${DEPSDIR}
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/../..
- )
- execute_process(
- COMMAND ${GIT} "checkout" ${DEPSTAG}
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/../../${DEPSDIR}
- )
- execute_process(
- COMMAND ${GIT} "pull"
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/../../${DEPSDIR}
- )
-endmacro( checkout_deps_repository )