[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:
Chris Bieneman 2016-06-21 21:28:40 +00:00
parent 5a35e65ca9
commit 8a99ecd01c
1 changed files with 0 additions and 2 deletions

View File

@ -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)