done
This commit is contained in:
@@ -1,5 +1,14 @@
|
||||
if("master" STREQUAL "")
|
||||
message(FATAL_ERROR "Tag for git checkout should not be empty.")
|
||||
endif()
|
||||
|
||||
if(NOT "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt" IS_NEWER_THAN "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt")
|
||||
set(run 0)
|
||||
|
||||
if("/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt" IS_NEWER_THAN "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt")
|
||||
set(run 1)
|
||||
endif()
|
||||
|
||||
if(NOT run)
|
||||
message(STATUS "Avoiding repeated git clone, stamp file is up to date: '/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt'")
|
||||
return()
|
||||
endif()
|
||||
@@ -12,12 +21,38 @@ if(error_code)
|
||||
message(FATAL_ERROR "Failed to remove directory: '/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-src'")
|
||||
endif()
|
||||
|
||||
set(git_options)
|
||||
|
||||
# disable cert checking if explicitly told not to do it
|
||||
set(tls_verify "")
|
||||
if(NOT "x" STREQUAL "x" AND NOT tls_verify)
|
||||
list(APPEND git_options
|
||||
-c http.sslVerify=false)
|
||||
endif()
|
||||
|
||||
set(git_clone_options)
|
||||
|
||||
set(git_shallow "")
|
||||
if(git_shallow)
|
||||
list(APPEND git_clone_options --depth 1 --no-single-branch)
|
||||
endif()
|
||||
|
||||
set(git_progress "")
|
||||
if(git_progress)
|
||||
list(APPEND git_clone_options --progress)
|
||||
endif()
|
||||
|
||||
set(git_config "")
|
||||
foreach(config IN LISTS git_config)
|
||||
list(APPEND git_clone_options --config ${config})
|
||||
endforeach()
|
||||
|
||||
# try the clone 3 times in case there is an odd git clone issue
|
||||
set(error_code 1)
|
||||
set(number_of_tries 0)
|
||||
while(error_code AND number_of_tries LESS 3)
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" clone "https://github.com/google/googletest.git" "googletest-src"
|
||||
COMMAND "/usr/local/bin/git" ${git_options} clone ${git_clone_options} --origin "origin" "https://github.com/google/googletest.git" "googletest-src"
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
@@ -32,7 +67,7 @@ if(error_code)
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" checkout master --
|
||||
COMMAND "/usr/local/bin/git" ${git_options} checkout master --
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
@@ -41,7 +76,16 @@ if(error_code)
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" submodule update --recursive --init
|
||||
COMMAND "/usr/local/bin/git" ${git_options} submodule init
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
message(FATAL_ERROR "Failed to init submodules in: '/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-src'")
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND "/usr/local/bin/git" ${git_options} submodule update --recursive --init
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
@@ -55,6 +99,7 @@ execute_process(
|
||||
COMMAND ${CMAKE_COMMAND} -E copy
|
||||
"/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt"
|
||||
"/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt"
|
||||
WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw7&8/cmake-build-debug/googletest-src"
|
||||
RESULT_VARIABLE error_code
|
||||
)
|
||||
if(error_code)
|
||||
|
||||
Reference in New Issue
Block a user