build: add --progress to submodule checkout

This commit is contained in:
tobtoht 2023-05-31 23:58:52 +02:00
parent 3b6a66229f
commit d87ad85f7f
No known key found for this signature in database
GPG Key ID: E45B10DD027D2472
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ include(VersionFeather)
#### Dependencies #### Dependencies
# Monero # Monero
if (NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/monero/CMakeLists.txt") if (NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/monero/CMakeLists.txt")
message(FATAL_ERROR "'monero/CMakeLists.txt' does not exist, did you forget to:\ngit submodule update --init --recursive") message(FATAL_ERROR "'monero/CMakeLists.txt' does not exist, did you forget to:\ngit submodule update --init --recursive --progress")
endif() endif()
add_subdirectory(monero EXCLUDE_FROM_ALL) add_subdirectory(monero EXCLUDE_FROM_ALL)
set_property(TARGET wallet_merged PROPERTY FOLDER "monero") set_property(TARGET wallet_merged PROPERTY FOLDER "monero")

View File

@ -51,7 +51,7 @@ fi
# Checkout git submodules if we haven't already # Checkout git submodules if we haven't already
################ ################
git submodule update --init --recursive git submodule update --init --recursive --progress
################ ################
# The git worktree should not be dirty # The git worktree should not be dirty