From 708490c0b1b495d06f85a1f803fef6be2d4c973f Mon Sep 17 00:00:00 2001 From: Roman Trapeznikov Date: Mon, 7 Feb 2022 16:47:58 +0300 Subject: [PATCH] quote SDL2_LIBRARIES --- ballisticacore-cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ballisticacore-cmake/CMakeLists.txt b/ballisticacore-cmake/CMakeLists.txt index a07148f2..64d88864 100644 --- a/ballisticacore-cmake/CMakeLists.txt +++ b/ballisticacore-cmake/CMakeLists.txt @@ -45,7 +45,7 @@ if (HEADLESS) set(SDL2_LIBRARIES "SDL2::SDL2") endif () # Getting complaint about space at the end of this on ubuntu16. - string(STRIP ${SDL2_LIBRARIES} SDL2_LIBRARIES) + string(STRIP "${SDL2_LIBRARIES}" SDL2_LIBRARIES) else () message(FATAL_ERROR "SDL2 not found") endif ()