From c4cd8041a3429224895a3fb8a1cd55de692723e9 Mon Sep 17 00:00:00 2001
From: Humberto Dias <[EMAIL REDACTED]>
Date: Thu, 5 Oct 2023 13:23:16 -0300
Subject: [PATCH] Use CMAKE_CURRENT_*_DIR instead of CMAKE_*_DIR
---
CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 73e2479c..725eba9f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -8,7 +8,7 @@ set(MINOR_VERSION 0)
set(MICRO_VERSION 0)
set(SDL_REQUIRED_VERSION 3.0.0)
-if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
+if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR)
message(FATAL_ERROR "Prevented in-tree built. Please create a build directory outside of the SDL_image source code and call cmake from there")
endif()