From 62fef52eb3bc9f62902641a6e4c074144ac4c82e Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Tue, 19 Jul 2022 12:18:51 +0200 Subject: [PATCH] [cmake] Satisfy CMAKE_BUILD_TYPE=MinSizeRel. Signed-off-by: Viktor Govako --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce3f1b5fa8..94a7a2a017 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,9 +86,10 @@ endif() # Global compile options for all configurations. add_compile_options(-ffast-math) +# Built-in CMake configurations: Debug, Release, RelWithDebInfo, MinSizeRel if (${CMAKE_BUILD_TYPE} STREQUAL "Debug") add_definitions(-DDEBUG -fno-omit-frame-pointer) -elseif (${CMAKE_BUILD_TYPE} MATCHES "^Rel") +elseif (${CMAKE_BUILD_TYPE} MATCHES "Rel") add_definitions(-DRELEASE) add_compile_options(-Ofast) else()