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, 17 insertions, 0 deletions
diff --git a/indra/cmake/DepsBuild.cmake b/indra/cmake/DepsBuild.cmake
new file mode 100644
index 0000000000..f4d80e9a67
--- /dev/null
+++ b/indra/cmake/DepsBuild.cmake
@@ -0,0 +1,17 @@
+# -*- 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 )