Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Praetorius, Simon
dune-amdis
Commits
be102ae8
Commit
be102ae8
authored
Mar 01, 2019
by
Praetorius, Simon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added cmake code to automatically update git submodules
parent
1d1ddecc
Pipeline
#1768
passed with stage
in 30 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
externals/CMakeLists.txt
externals/CMakeLists.txt
+19
-0
No files found.
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
Markdown
is supported
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