From 510d6f312a94fd5c18cc784d03e39b579763ecd9 Mon Sep 17 00:00:00 2001 From: Lukas Date: Sat, 21 Jun 2025 15:17:50 +0200 Subject: [PATCH] Reflect python 3.11 requirement for shader build script in CMake (#363) --- 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)