Skip to content
Snippets Groups Projects
Commit 43e0a683 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'issue/git_submodules' into 'develop'

added cmake code to automatically update git submodules

See merge request spraetor/dune-amdis!91
parents 1d1ddecc be102ae8
No related branches found
No related tags found
No related merge requests found
find_package(Git QUIET)
if (GIT_FOUND AND EXISTS "${PROJECT_SOURCE_DIR}/.git")
# Update submodules as needed
option(GIT_SUBMODULE "Check submodules during build" ON)
if (GIT_SUBMODULE)
execute_process(COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
RESULT_VARIABLE GIT_SUBMOD_RESULT)
if(NOT GIT_SUBMOD_RESULT EQUAL "0")
message(FATAL_ERROR "git submodule update --init failed with ${GIT_SUBMOD_RESULT}, please checkout submodules")
endif()
endif()
endif()
if (NOT EXISTS "${PROJECT_SOURCE_DIR}/externals/fmt/CMakeLists.txt")
message(FATAL_ERROR "The submodules were not downloaded! GIT_SUBMODULE was turned off or failed. Please update submodules and try again.")
endif()
dune_library_add_sources(fmt SOURCES dune_library_add_sources(fmt SOURCES
fmt/src/format.cc fmt/src/format.cc
fmt/src/posix.cc fmt/src/posix.cc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment