From d1ff4a83b5d539e036bb35dd7d3221b12ceafd8c Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Thu, 20 Jul 2017 18:43:30 -0400 Subject: [PATCH] Try the /Z7 flag - Debug info is not generated in PDB's, it's within the binaries instead --- ports/allegro5/portfile.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ports/allegro5/portfile.cmake b/ports/allegro5/portfile.cmake index 094219a83c5..a1d075727f8 100644 --- a/ports/allegro5/portfile.cmake +++ b/ports/allegro5/portfile.cmake @@ -70,7 +70,9 @@ vcpkg_configure_cmake( -DOPENAL_INCLUDE_DIR=${CURRENT_INSTALLED_DIR}/include/AL -DZLIB_INCLUDE_DIR=${CURRENT_INSTALLED_DIR}/include OPTIONS_RELEASE -DWANT_ALLOW_SSE=ON - OPTIONS_DEBUG -DWANT_ALLOW_SSE=OFF + OPTIONS_DEBUG + -DWANT_ALLOW_SSE=OFF + -DCMAKE_CXX_FLAGS_DEBUG="/D_DEBUG /MDd /Z7 /Ob0 /Od /RTC1" ) vcpkg_install_cmake()