diff options
author | Fletcher Porter <me@fletcherporter.com> | 2021-11-02 07:51:11 +0100 |
---|---|---|
committer | Fletcher Porter <me@fletcherporter.com> | 2021-11-02 08:01:39 +0100 |
commit | 2b3d66fe695d4bb9978626c861ea586706677a24 (patch) | |
tree | 2be2f6889f7ee57e929ac21f296dec4840dd7833 /CMakeLists.txt | |
parent | Merge pull request #7227 from vonchenplus/fix_memory_leak_v2 (diff) | |
download | yuzu-2b3d66fe695d4bb9978626c861ea586706677a24.tar yuzu-2b3d66fe695d4bb9978626c861ea586706677a24.tar.gz yuzu-2b3d66fe695d4bb9978626c861ea586706677a24.tar.bz2 yuzu-2b3d66fe695d4bb9978626c861ea586706677a24.tar.lz yuzu-2b3d66fe695d4bb9978626c861ea586706677a24.tar.xz yuzu-2b3d66fe695d4bb9978626c861ea586706677a24.tar.zst yuzu-2b3d66fe695d4bb9978626c861ea586706677a24.zip |
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 eb403205c..c9b40dd60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ function(check_submodules_present) string(REGEX REPLACE "path *= *" "" module ${module}) if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git") message(FATAL_ERROR "Git submodule ${module} not found. " - "Please run: git submodule update --init --recursive") + "Please run: \ngit submodule update --init --recursive") endif() endforeach() endfunction() |