summaryrefslogtreecommitdiffhomepage
path: root/userconfig-runner@Windows-MSVC.cmake
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-11-24 09:40:54 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-11-24 09:49:36 +0100
commita968b4466287bc78ea7219c03f06e6f78d7a582c (patch)
tree6f49823dce05072e742e2a2e82b3626cc2876a73 /userconfig-runner@Windows-MSVC.cmake
parent9b5947552ea6273d20f403a84439d347ee05b089 (diff)
try to fix ci
Diffstat (limited to 'userconfig-runner@Windows-MSVC.cmake')
-rw-r--r--userconfig-runner@Windows-MSVC.cmake9
1 files changed, 6 insertions, 3 deletions
diff --git a/userconfig-runner@Windows-MSVC.cmake b/userconfig-runner@Windows-MSVC.cmake
index 1a91c2f6..7ea41b64 100644
--- a/userconfig-runner@Windows-MSVC.cmake
+++ b/userconfig-runner@Windows-MSVC.cmake
@@ -1,5 +1,8 @@
set(CMAKE_INSTALL_MESSAGE NEVER)
sets(STRING
- CMAKE_BUILD_TYPE RELEASE
- CMAKE_C_FLAGS_RELEASE "-O0 -MD"
- CMAKE_CXX_FLAGS_RELEASE "-O0 -MD")
+ CMAKE_BUILD_TYPE DEBUG
+ CMAKE_C_FLAGS_DEBUG "-O0 -MD -Zi -W4"
+ CMAKE_CXX_FLAGS_DEBUG "-O0 -MD -Zi -W4"
+ CMAKE_EXE_LINKER_FLAGS_DEBUG "-DEBUG:FULL"
+ CMAKE_SHARED_LINKER_FLAGS_DEBUG "-DEBUG:FULL"
+)