[Bf-blender-cvs] [da22ec12545] master: Cleanup: Fix CMake syntax error in the last commit.

Ankit Meel noreply at git.blender.org
Wed Dec 2 09:26:20 CET 2020


Commit: da22ec125457f0e605de576c90ced15229facca8
Author: Ankit Meel
Date:   Wed Dec 2 13:55:52 2020 +0530
Branches: master
https://developer.blender.org/rBda22ec125457f0e605de576c90ced15229facca8

Cleanup: Fix CMake syntax error in the last commit.

===================================================================

M	CMakeLists.txt

===================================================================

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 842bbff4ba6..a192aacfa3b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -883,7 +883,7 @@ if(NOT CMAKE_BUILD_TYPE MATCHES "Release")
 
     if(APPLE AND COMPILER_ASAN_LIBRARY)
       string(REPLACE " " ";" _list_COMPILER_ASAN_CFLAGS ${COMPILER_ASAN_CFLAGS})
-      set(_is_CONFIG_DEBUG "$<OR:$<CONFIG:Debug>, $<CONFIG:RelWithDebInfo>>")
+      set(_is_CONFIG_DEBUG "$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>")
       add_compile_options("$<${_is_CONFIG_DEBUG}:${_list_COMPILER_ASAN_CFLAGS}>")
       add_link_options("$<${_is_CONFIG_DEBUG}:-fno-omit-frame-pointer;-fsanitize=address>")
       unset(_list_COMPILER_ASAN_CFLAGS)



More information about the Bf-blender-cvs mailing list