From 67b6b20ed8784da3a8070cc1042f65e11cdf8b08 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Mon, 19 Feb 2024 13:27:19 +0100 Subject: [PATCH] Allow build types `Fast` and `FastDebug` with IV. (#50) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 66e6458..34498e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ option(IV_ENABLE_X11_DYNAMIC_MAKE_HEADERS "Remake the X11 dynamic .h files." OFF # ============================================================================= # CMake build settings # ============================================================================= -set(allowableBuildTypes Custom Debug Release RelWithDebInfo) +set(allowableBuildTypes Custom Debug Release RelWithDebInfo Fast FastDebug) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE RelWithDebInfo