forked from OSchip/llvm-project
[CMake] NFC. An unset variable evaluates to false, so this else is unneeded
This change is mostly to enable me to do some experimentation with building runtime libraries (See: D20992). It is harmless because unset variables evaluate to false in conditional expressions. llvm-svn: 273320
This commit is contained in:
parent
5a35e65ca9
commit
8a99ecd01c
|
@ -11,8 +11,6 @@
|
|||
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||
project(CompilerRT C CXX ASM)
|
||||
set(COMPILER_RT_STANDALONE_BUILD TRUE)
|
||||
else()
|
||||
set(COMPILER_RT_STANDALONE_BUILD FALSE)
|
||||
endif()
|
||||
|
||||
cmake_minimum_required(VERSION 3.4.3)
|
||||
|
|
Loading…
Reference in New Issue