This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new eec957a51 build: increase FetchContent timeout to 120 seconds for LVGL
eec957a51 is described below
commit eec957a514343dc9d9b159230bdafa26b30cad54
Author: Daniel Jasinski <[email protected]>
AuthorDate: Fri Nov 8 21:48:38 2024 +0100
build: increase FetchContent timeout to 120 seconds for LVGL
LVGL 9.2.1 archive is ~70MB. Over poor connections, it may take
longer to download it. This renders CMake build unusable in such
environments.
Signed-off-by: Daniel Jasinski <[email protected]>
---
graphics/lvgl/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/graphics/lvgl/CMakeLists.txt b/graphics/lvgl/CMakeLists.txt
index fb1884062..a6f4ce43a 100644
--- a/graphics/lvgl/CMakeLists.txt
+++ b/graphics/lvgl/CMakeLists.txt
@@ -43,7 +43,7 @@ if(CONFIG_GRAPHICS_LVGL)
TEST_COMMAND
""
DOWNLOAD_NO_PROGRESS true
- TIMEOUT 30)
+ TIMEOUT 120)
FetchContent_GetProperties(lvgl_fetch)