From ffeb0a2669397afbdd0d94be68228fe9e3672fb6 Mon Sep 17 00:00:00 2001 From: Lukas Meller Date: Sat, 21 Jun 2025 14:51:16 +0200 Subject: [PATCH] Reflect python 3.11 requirement for shader build script in CMake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a604db22..461e8378 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ else() endif() find_program(SDL_SHADERCROSS_BIN NAMES "shadercross") -find_package(Python3 COMPONENTS Interpreter) +find_package(Python3 3.11 COMPONENTS Interpreter) option(ISLE_BUILD_APP "Build isle application" ON) option(ISLE_ASAN "Enable Address Sanitizer" OFF)