From ef90d1eaaf3e246aa89d1e645192da794740156d Mon Sep 17 00:00:00 2001 From: q234rty Date: Wed, 1 Nov 2023 23:20:51 +0800 Subject: [PATCH] Map cmake None to meson's plain empty is not a build type that exists in meson. I have no idea why I typed "empty" in #3614 ... Fixes: ba5f1d87838978ae92d4989545a083e28ef58d6f --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 31a1646b..dfe3c456 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ if(CMAKE_BUILD_TYPE) elseif(BUILDTYPE_LOWER STREQUAL "minsizerel") set(BUILDTYPE_LOWER "minsize") elseif(BUILDTYPE_LOWER STREQUAL "none") - set(BUILDTYPE_LOWER "empty") + set(BUILDTYPE_LOWER "plain") else() set(BUILDTYPE_LOWER "release") endif()