diff options
| author | 2021-11-19 01:19:50 -0800 | |
|---|---|---|
| committer | 2021-11-19 01:19:50 -0800 | |
| commit | d2e009f3559083d68d3a0a50ff31c57a97d6b1c7 (patch) | |
| tree | 71aeccb39274ac23f947bae842ff43865804f999 | |
| parent | Merge pull request #7342 from goldenx86/patch-3 (diff) | |
| parent | Move the cmake submodule checkout command to a new line (diff) | |
| download | yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar.gz yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.tar.xz yuzu-d2e009f3559083d68d3a0a50ff31c57a97d6b1c7.zip | |
Merge pull request #7273 from fpdotmonkey/submodule-checkout-command-on-new-line
Move the cmake submodule checkout command to a new line
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6044e311a..2c044c1ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -57,7 +57,7 @@ function(check_submodules_present) | |||
| 57 | string(REGEX REPLACE "path *= *" "" module ${module}) | 57 | string(REGEX REPLACE "path *= *" "" module ${module}) |
| 58 | if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git") | 58 | if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git") |
| 59 | message(FATAL_ERROR "Git submodule ${module} not found. " | 59 | message(FATAL_ERROR "Git submodule ${module} not found. " |
| 60 | "Please run: git submodule update --init --recursive") | 60 | "Please run: \ngit submodule update --init --recursive") |
| 61 | endif() | 61 | endif() |
| 62 | endforeach() | 62 | endforeach() |
| 63 | endfunction() | 63 | endfunction() |