diff options
author | Justin Bogner <mail@justinbogner.com> | 2015-08-11 18:17:41 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2015-08-11 18:17:41 +0000 |
commit | 74009be05158c72893e02c2930b771a334543f1b (patch) | |
tree | 63e34be13d615b79d251c7ff28ab9eaf718eb4b4 | |
parent | 10f01bd4d3aca9472b792b3ded3e6bf75ae90a7b (diff) | |
download | bcm5719-llvm-74009be05158c72893e02c2930b771a334543f1b.tar.gz bcm5719-llvm-74009be05158c72893e02c2930b771a334543f1b.zip |
Re-apply "cmake: Make CMAKE_BUILD_TYPE check case-insensitive"
This re-applies r244516 (effectively reverting r244516) without losing
the check that caused failures for VS.
llvm-svn: 244643
-rw-r--r-- | llvm/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index adf852e2a44..9943115920a 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -7,11 +7,6 @@ if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) set(CMAKE_BUILD_TYPE "Debug") endif() -if (CMAKE_BUILD_TYPE AND - NOT CMAKE_BUILD_TYPE MATCHES "^(Debug|Release|RelWithDebInfo|MinSizeRel)$") - message(FATAL_ERROR "Invalid value for CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") -endif() - if(POLICY CMP0022) cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required endif() @@ -157,6 +152,11 @@ endif() string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) +if (CMAKE_BUILD_TYPE AND + NOT uppercase_CMAKE_BUILD_TYPE MATCHES "^(DEBUG|RELEASE|RELWITHDEBINFO|MINSIZEREL)$") + message(FATAL_ERROR "Invalid value for CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") +endif() + set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" ) # They are used as destination of target generators. |