mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 16:45:58 +01:00
cmake: Map cmake None to meson empty (#3614)
While not explicitly mentioned by the cmake documentation, cmake
upstream seems to think of None as a vaild CMAKE_BUILD_TYPE. [1]
Handle it properly by mapping it to meson's empty.
[1]: ce1cadd35a
This commit is contained in:
parent
d994e6aea6
commit
ba5f1d8783
1 changed files with 2 additions and 0 deletions
|
@ -44,6 +44,8 @@ if(CMAKE_BUILD_TYPE)
|
|||
set(BUILDTYPE_LOWER "debugoptimized")
|
||||
elseif(BUILDTYPE_LOWER STREQUAL "minsizerel")
|
||||
set(BUILDTYPE_LOWER "minsize")
|
||||
elseif(BUILDTYPE_LOWER STREQUAL "none")
|
||||
set(BUILDTYPE_LOWER "empty")
|
||||
else()
|
||||
set(BUILDTYPE_LOWER "release")
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue