forked from OSchip/llvm-project
[llvm][cmake] Normalize some indent
- Change a stray tab to spaces - 4 not 2 spaces in second line of `set` like above. Reviewed By: mstorsjo Differential Revision: https://reviews.llvm.org/D116510
This commit is contained in:
parent
db81324c8d
commit
fc78b62cba
|
@ -70,7 +70,7 @@ set(LLVM_EXTRA_PROJECTS "flang")
|
|||
# List of all known projects in the mono repo
|
||||
set(LLVM_KNOWN_PROJECTS "${LLVM_ALL_PROJECTS};${LLVM_EXTRA_PROJECTS}")
|
||||
set(LLVM_ENABLE_PROJECTS "" CACHE STRING
|
||||
"Semicolon-separated list of projects to build (${LLVM_KNOWN_PROJECTS}), or \"all\".")
|
||||
"Semicolon-separated list of projects to build (${LLVM_KNOWN_PROJECTS}), or \"all\".")
|
||||
foreach(proj ${LLVM_ENABLE_PROJECTS})
|
||||
if (NOT proj STREQUAL "all" AND NOT proj STREQUAL "llvm" AND NOT "${proj}" IN_LIST LLVM_KNOWN_PROJECTS)
|
||||
MESSAGE(FATAL_ERROR "${proj} isn't a known project: ${LLVM_KNOWN_PROJECTS}")
|
||||
|
@ -344,7 +344,7 @@ set(LLVM_TARGETS_TO_BUILD "all"
|
|||
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
||||
|
||||
set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
|
||||
CACHE STRING "Semicolon-separated list of experimental targets to build.")
|
||||
CACHE STRING "Semicolon-separated list of experimental targets to build.")
|
||||
|
||||
option(BUILD_SHARED_LIBS
|
||||
"Build all libraries as shared libraries instead of static" OFF)
|
||||
|
|
Loading…
Reference in New Issue