We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25cbee0 + d0a9da7 commit b022db1Copy full SHA for b022db1
CMakeLists.txt
@@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 2.8.5)
2
3
if(NOT CMAKE_BUILD_TYPE)
4
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
5
- "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
+ "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE)
6
endif()
7
8
-set(_list "Debug;Release;RelWithDebInfo;MinSizeRel")
+set(_list "None;Debug;Release;RelWithDebInfo;MinSizeRel")
9
list(FIND _list ${CMAKE_BUILD_TYPE} _index)
10
if(${_index} EQUAL -1)
11
string(REPLACE ";" ", " _list_pretty "${_list}")
0 commit comments