authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2020-02-05 10:01:16-05:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2020-02-05 10:01:16-05:00
logb022db16ece48f2cdec47c5716601fec2fc07ef4
tree9fdc50f6f292a207926371d4c41cfdead2f448ed
parent25cbee0b84074368c23b7540a63cba83162e4b73
parentd0a9da74ef6399c465beff5f77b2dc1e5ccfb787
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Merge pull request #4394 from mikdusan/fix-cmake-regression

stage1: fix cmake regression

1 files changed, 2 insertions(+), 2 deletions(-)

CMakeLists.txt+2-2
......@@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 2.8.5)
22
33if(NOT CMAKE_BUILD_TYPE)
44 set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
5 "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
5 "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE)
66endif()
77
8set(_list "Debug;Release;RelWithDebInfo;MinSizeRel")
8set(_list "None;Debug;Release;RelWithDebInfo;MinSizeRel")
99list(FIND _list ${CMAKE_BUILD_TYPE} _index)
1010if(${_index} EQUAL -1)
1111 string(REPLACE ";" ", " _list_pretty "${_list}")