diff options
author | szx <szx@null.net> | 2022-10-13 13:49:41 +0600 |
---|---|---|
committer | szx <szx@null.net> | 2022-10-13 13:50:53 +0600 |
commit | a71cefc604c76dfa1ef4eea79264c6d6fa5a538d (patch) | |
tree | bde33f6b81f5abfc97cc0c03a06371088a086163 /cmake | |
parent | 0b3a2c0085717b0fdc1f5025cfeb70f96790d3ce (diff) |
Fix CMake warning in windows/ArchSetup.cmake
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/scripts/windows/ArchSetup.cmake | 2 |
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 --------- |