Skip to content
Snippets Groups Projects
Commit a02530e2 authored by Stephen Hurd's avatar Stephen Hurd
Browse files

Use quotes around potentially empty string

parent 3e999991
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ if(WIN32) ...@@ -13,7 +13,7 @@ if(WIN32)
find_program(UNZIP_PATH tar REQUIRED) find_program(UNZIP_PATH tar REQUIRED)
set(DOWNLOAD_CMD "${UNZIP_PATH}" -xf "${CMAKE_CURRENT_SOURCE_DIR}/dist/cryptlib.zip" -C "<SOURCE_DIR>") set(DOWNLOAD_CMD "${UNZIP_PATH}" -xf "${CMAKE_CURRENT_SOURCE_DIR}/dist/cryptlib.zip" -C "<SOURCE_DIR>")
find_program(MAKE_PATH NAMES msbuild REQUIRED) find_program(MAKE_PATH NAMES msbuild REQUIRED)
if(${CMAKE_BUILD_TYPE} STREQUAL "Debug") if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
set(USE_CONFIG Debug) set(USE_CONFIG Debug)
else() else()
set(USE_CONFIG Release) set(USE_CONFIG Release)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment