From fc78b62cbadaff472f8deaeae3aeac101ea04851 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Mon, 3 Jan 2022 01:29:39 +0000 Subject: [PATCH] [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 --- llvm/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index 5d6079c..672183f 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -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) -- 2.7.4