summaryrefslogtreecommitdiff
path: root/indra/cmake
diff options
context:
space:
mode:
authorNicky <nicky.dasmijn@gmail.com>2022-04-06 23:28:33 +0200
committerNicky <nicky.dasmijn@gmail.com>2022-04-06 23:33:06 +0200
commit248b6a25841fd2ceb07e04cb532b64b4238da83c (patch)
treecbbb4e97c95168b0d6bf431f499c8f90f38b6274 /indra/cmake
parentd1b6a52fefb483ab75ec60e379d37bfd2e6aff90 (diff)
Don't bother with debug builds,, they are long deprecated.
Diffstat (limited to 'indra/cmake')
-rw-r--r--indra/cmake/00-Common.cmake5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake
index 45c81b1b30..e8c956bce3 100644
--- a/indra/cmake/00-Common.cmake
+++ b/indra/cmake/00-Common.cmake
@@ -42,9 +42,8 @@ if(NON_RELEASE_CRASH_REPORTING)
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DLL_SEND_CRASH_REPORTS=1")
endif()
-# Don't bother with a MinSizeRel build.
-set(CMAKE_CONFIGURATION_TYPES "RelWithDebInfo;Release;Debug" CACHE STRING
- "Supported build types." FORCE)
+# Don't bother with a MinSizeRel or Debug build.
+set(CMAKE_CONFIGURATION_TYPES "RelWithDebInfo;Release" CACHE STRING "Supported build types." FORCE)
# Platform-specific compilation flags.