diff options
author | Alexandre Bouvier <contact@amb.tf> | 2022-07-30 05:01:09 +0200 |
---|---|---|
committer | Alexandre Bouvier <contact@amb.tf> | 2022-07-30 05:01:09 +0200 |
commit | 8b40b59084159f647c8b0393bc31735e5e417a8c (patch) | |
tree | 347d0d0c0011c99d62352b83f20faecd51bc60c4 /CMakeLists.txt | |
parent | Merge pull request #8665 from liamwhite/github-is-dumb (diff) | |
download | yuzu-8b40b59084159f647c8b0393bc31735e5e417a8c.tar yuzu-8b40b59084159f647c8b0393bc31735e5e417a8c.tar.gz yuzu-8b40b59084159f647c8b0393bc31735e5e417a8c.tar.bz2 yuzu-8b40b59084159f647c8b0393bc31735e5e417a8c.tar.lz yuzu-8b40b59084159f647c8b0393bc31735e5e417a8c.tar.xz yuzu-8b40b59084159f647c8b0393bc31735e5e417a8c.tar.zst yuzu-8b40b59084159f647c8b0393bc31735e5e417a8c.zip |
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d35ccb696..b34203239 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,6 +40,8 @@ option(YUZU_TESTS "Compile tests" ON) option(YUZU_USE_BUNDLED_VCPKG "Use vcpkg for yuzu dependencies" OFF) +option(YUZU_CHECK_SUBMODULES "Check if submodules are present" ON) + if (YUZU_USE_BUNDLED_VCPKG) include(${CMAKE_SOURCE_DIR}/externals/vcpkg/scripts/buildsystems/vcpkg.cmake) elseif(NOT "$ENV{VCPKG_TOOLCHAIN_FILE}" STREQUAL "") @@ -77,7 +79,7 @@ function(check_submodules_present) endforeach() endfunction() -if(EXISTS ${PROJECT_SOURCE_DIR}/.gitmodules) +if(EXISTS ${PROJECT_SOURCE_DIR}/.gitmodules AND YUZU_CHECK_SUBMODULES) check_submodules_present() endif() configure_file(${PROJECT_SOURCE_DIR}/dist/compatibility_list/compatibility_list.qrc |