Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
amdis
amdis-core
Commits
be102ae8
Commit
be102ae8
authored
Mar 01, 2019
by
Praetorius, Simon
Browse files
added cmake code to automatically update git submodules
parent
1d1ddecc
Changes
1
Hide whitespace changes
Inline
Side-by-side
externals/CMakeLists.txt
View file @
be102ae8
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
fmt/src/format.cc
fmt/src/posix.cc
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment