aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorszx <szx@null.net>2022-10-13 13:49:41 +0600
committerszx <szx@null.net>2022-10-13 13:50:53 +0600
commita71cefc604c76dfa1ef4eea79264c6d6fa5a538d (patch)
treebde33f6b81f5abfc97cc0c03a06371088a086163
parent0b3a2c0085717b0fdc1f5025cfeb70f96790d3ce (diff)
Fix CMake warning in windows/ArchSetup.cmake
-rw-r--r--cmake/scripts/windows/ArchSetup.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/scripts/windows/ArchSetup.cmake b/cmake/scripts/windows/ArchSetup.cmake
index 01c885180a..49a0f38a29 100644
--- a/cmake/scripts/windows/ArchSetup.cmake
+++ b/cmake/scripts/windows/ArchSetup.cmake
@@ -10,7 +10,7 @@ endif()
# -------- Host Settings ---------
set(_gentoolset ${CMAKE_GENERATOR_TOOLSET})
-string(REPLACE "host=" "" HOSTTOOLSET ${_gentoolset})
+string(REPLACE "host=" "" HOSTTOOLSET "${_gentoolset}")
unset(_gentoolset)
# -------- Architecture settings ---------