From 47255178329bab4efa4408a4e4d373fb9264e8c5 Mon Sep 17 00:00:00 2001 From: Marisa Heit Date: Sat, 13 Aug 2022 15:46:15 -0500 Subject: [PATCH] Don't mess with the build type in GME's CMakeLists.txt --- thirdparty/game-music-emu/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/thirdparty/game-music-emu/CMakeLists.txt b/thirdparty/game-music-emu/CMakeLists.txt index a7ad0fc..b164481 100644 --- a/thirdparty/game-music-emu/CMakeLists.txt +++ b/thirdparty/game-music-emu/CMakeLists.txt @@ -8,11 +8,6 @@ include (CheckCXXCompilerFlag) # When version is changed, also change the one in gme/gme.h to match set(GME_VERSION 0.6.2 CACHE INTERNAL "libgme Version") -# I don't plan on debugging this, so make it a release build. -if( NOT CMAKE_BUILD_TYPE MATCHES "Release" ) - set( CMAKE_BUILD_TYPE "RelWithDebInfo" ) -endif() - if(COMPILER_IS_GNUCXX_COMPATIBLE) add_compile_options(-Wall -Wextra) if(NOT PROFILE)