From 4b708b6b810e02e3a2e2deaeabbd4c8c8dcab697 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Wed, 25 Aug 2021 15:43:09 +0200 Subject: [PATCH] Default to RELWITHDEBINFO --- dependencies/O2PhysicsCompileFlags.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies/O2PhysicsCompileFlags.cmake b/dependencies/O2PhysicsCompileFlags.cmake index 391fd07444d..b12bd9ea08a 100644 --- a/dependencies/O2PhysicsCompileFlags.cmake +++ b/dependencies/O2PhysicsCompileFlags.cmake @@ -25,7 +25,7 @@ MARK_AS_ADVANCED( #Check the compiler and set the compile and link flags IF (NOT CMAKE_BUILD_TYPE) Message(STATUS "Set BuildType to DEBUG") - set(CMAKE_BUILD_TYPE Debug) + set(CMAKE_BUILD_TYPE RELWITHDEBINFO) ENDIF (NOT CMAKE_BUILD_TYPE) IF(ENABLE_CASSERT) #For the CI, we want to have assertions enabled