1
0
mirror of synced 2024-09-24 19:48:25 +02:00

build: Don't generated PDBs in Debug mode

This commit is contained in:
WerWolv 2023-06-24 11:52:37 +02:00
parent ade05f8e12
commit 568e8d8d42

View File

@ -575,7 +575,7 @@ macro(addBundledLibraries)
endmacro()
function(generatePDBs)
if (NOT WIN32)
if (NOT WIN32 OR CMAKE_BUILD_TYPE STREQUAL "Debug")
return()
endif ()