From: Matthias Maier Date: Fri, 11 Oct 2024 14:17:42 +0000 (-0500) Subject: CMake: fix check_compiler_setup macro for multi generator setup X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a560c8f66d3911fb94bff9b3b3b8565f70f1cbc;p=dealii.git CMake: fix check_compiler_setup macro for multi generator setup --- diff --git a/cmake/macros/check_compiler_setup/CMakeLists.txt b/cmake/macros/check_compiler_setup/CMakeLists.txt index 543f86cadc..0b68d5a942 100644 --- a/cmake/macros/check_compiler_setup/CMakeLists.txt +++ b/cmake/macros/check_compiler_setup/CMakeLists.txt @@ -1,5 +1,6 @@ # use a "Custom" build type to avoid auto populated compiler flags set(CMAKE_BUILD_TYPE "Custom") +set(CMAKE_CONFIGURATION_TYPES "DEBUG;RELEASE") cmake_minimum_required(VERSION 3.13.4) project(CheckCompilerSetup) add_executable(CheckCompilerSetupExec dummy.cpp)