Update string(TOLOWER ...) to take string versions of CMake variables (#561)

On some generators (MSVC) there is the issue that this line produces cause by the variable being expanded and not being surrounded by quotes.
This commit is contained in:
Hristo Stamenov 2021-05-20 15:47:20 +03:00 committed by GitHub
parent 476a870d6c
commit c629200b93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,8 +199,8 @@ if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(BITS 64) set(BITS 64)
endif(CMAKE_SIZEOF_VOID_P EQUAL 8) endif(CMAKE_SIZEOF_VOID_P EQUAL 8)
string(TOLOWER ${CMAKE_SYSTEM_NAME} SYSTEM_NAME) string(TOLOWER "${CMAKE_SYSTEM_NAME}" SYSTEM_NAME)
string(TOLOWER ${CMAKE_BUILD_TYPE} BUILD_TYPE) string(TOLOWER "${CMAKE_BUILD_TYPE}" BUILD_TYPE)
if(ANDROID) if(ANDROID)
# Added the android abi after system name # Added the android abi after system name