SDL_ttf: Use CMAKE_CURRENT_*_DIR instead of CMAKE_*_DIR (3a512)

From 3a51231c98ab0ca728bba6eb5f743da5dcfedf5a Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Thu, 5 Oct 2023 19:11:43 +0200
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 8d8a8d3e..40d84818 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ set(SDL_REQUIRED_VERSION 2.0.10)
 include(PrivateSdlFunctions)
 sdl_calculate_derived_version_variables()
 
-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_ttf source code and call cmake from there")
 endif()