mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
build: add --progress to submodule checkout
This commit is contained in:
parent
3b6a66229f
commit
d87ad85f7f
2 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue