SDL_image: cmake: fix samples install path (5df80)

From 5df8059edf077bc1ce99291a627f35ffcb45e62f Mon Sep 17 00:00:00 2001
From: Christoph Gohlke <[EMAIL REDACTED]>
Date: Wed, 23 Nov 2022 06:19:00 -0800
Subject: [PATCH] cmake: fix samples install path

---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 87f2b767..314267fb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -787,7 +787,7 @@ if(SDL2IMAGE_SAMPLES)
 
         if(SDL2IMAGE_SAMPLES_INSTALL)
             install(TARGETS ${prog}
-                RUNTIME DESTINATION "{CMAKE_INSTALL_BINDIR}"
+                RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
             )
         endif()
     endforeach()