From dafcb72c5cc9bc5d9b9d7115511455785e32e75a Mon Sep 17 00:00:00 2001 From: VoxelTek <53562267+VoxelTek@users.noreply.github.com> Date: Wed, 18 Jun 2025 11:58:36 +1000 Subject: [PATCH] Make status message only run if downloading SDL3 --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f8697def..b4a3686b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,10 +50,13 @@ message(STATUS "Internal miniwin: ${ISLE_MINIWIN}") message(STATUS "Isle debugging: ${ISLE_DEBUG}") message(STATUS "Compile shaders: ${ISLE_COMPILE_SHADERS}") -message(STATUS "Fetching SDL3, please wait...") + if (DOWNLOAD_DEPENDENCIES) # FetchContent downloads and configures dependencies + + message(STATUS "Fetching SDL3 and iniparser. This might take a while...") + include(FetchContent) FetchContent_Declare( SDL3