From 9966da9ff356c6802473a353827d15288afe1558 Mon Sep 17 00:00:00 2001 From: crueter Date: Sun, 3 Aug 2025 04:10:34 +0200 Subject: [PATCH] [cmake] check if submodule dir is empty (#182) previously, it would check for Git submodules... which fails for source packs... Signed-off-by: crueter Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/182 --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f775cdf87b..fd7c1817fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -252,7 +252,10 @@ function(check_submodules_present) string(REGEX MATCHALL "path *= *[^ \t\r\n]*" gitmodules ${gitmodules}) foreach(module ${gitmodules}) string(REGEX REPLACE "path *= *" "" module ${module}) - if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git") + + file(GLOB RESULT "${PROJECT_SOURCE_DIR}/${module}/*") + list(LENGTH RESULT RES_LEN) + if(RES_LEN EQUAL 0) message(FATAL_ERROR "Git submodule ${module} not found. " "Please run: \ngit submodule update --init --recursive") endif()