From 1b8146ef300259c1206a3a56341be3e64d96515d Mon Sep 17 00:00:00 2001 From: sven Date: Tue, 7 May 2024 11:04:58 +0200 Subject: [PATCH] fix forwarding of msvc compiler flag '/Zo' (#2266) * fix forwarding of msvc compiler flag '/Zo' * remove accidental change from pr --------- Co-authored-by: Sven Erdem --- test/common/devCompileOptions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/devCompileOptions.cmake b/test/common/devCompileOptions.cmake index 4201c9a6ea73..957354d862a3 100644 --- a/test/common/devCompileOptions.cmake +++ b/test/common/devCompileOptions.cmake @@ -33,7 +33,7 @@ if(MSVC) endif() # Improve debugging. list(APPEND alpaka_DEV_COMPILE_OPTIONS "$<$,$>:SHELL:/Zo>" - "$<$,$>:-Xcompiler /Zo>") + "$<$,$>:SHELL:-Xcompiler /Zo>") # Flags added in Visual Studio 2013 list(APPEND alpaka_DEV_COMPILE_OPTIONS "$<$:SHELL:/Zc:throwingNew>"