From eed9e111fe146c71d473706d0a963d4631297fd4 Mon Sep 17 00:00:00 2001 From: sharma-shray Date: Wed, 27 Mar 2024 08:12:29 +0200 Subject: [PATCH] fix --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2be36482..cbaeaae1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,5 +15,5 @@ find_package(SDL2 REQUIRED) include_directories(${SDL2_INCLUDE_DIRS} src) add_executable(SnakeGame src/main.cpp src/game.cpp src/controller.cpp src/renderer.cpp src/snake.cpp) -string(STRIP ${SDL2_LIBRARIES} SDL2_LIBRARIES) +string(STRIP "${SDL2_LIBRARIES}" SDL2_LIBRARIES) target_link_libraries(SnakeGame ${SDL2_LIBRARIES})