qtk/cmake/include/git_submodule.cmake

33 lines
994 B
CMake
Raw Normal View History

2022-08-14 22:08:06 +00:00
################################################################################
## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
## ##
## CMake function to update git submodules ##
################################################################################
include_guard()
find_package(Git)
# _PATH: Path to git submodule location that we want to update
# + submodule_update(extern/assimp)
function(submodule_update _PATH)
2023-12-27 19:36:47 +00:00
if (NOT QTK_SUBMODULES)
2022-08-14 22:08:06 +00:00
return()
endif()
if (NOT GIT_FOUND)
message(FATAL_ERROR "[Qtk] Error: No git executable found")
2022-08-14 22:08:06 +00:00
endif()
execute_process(
COMMAND ${GIT_EXECUTABLE} submodule update --init --force "${_PATH}"
RESULT_VARIABLE result
2022-08-14 22:08:06 +00:00
)
if (NOT result EQUAL 0)
message(
FATAL_ERROR
"[Qtk] Error: Unable to update git submodule at ${_PATH}"
)
2022-08-14 22:08:06 +00:00
endif()
endfunction()