summaryrefslogtreecommitdiffstats
path: root/tools/clang-format
diff options
context:
space:
mode:
authorMatt Morehouse <mascasa@google.com>2017-10-12 22:00:09 +0000
committerMatt Morehouse <mascasa@google.com>2017-10-12 22:00:09 +0000
commit783e107de5a40281aa9a2bde6f816bf0cc7bf4f3 (patch)
treed60165960938ae61a3fe74017326a58190cd3e8d /tools/clang-format
parent12cf9455cb2b8685e080cf20ffd7155ab4059611 (diff)
[cmake] Rename LIB_FUZZING_ENGINE to LLVM_LIB_FUZZING_ENGINE.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@315630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/clang-format')
-rw-r--r--tools/clang-format/CMakeLists.txt2
-rw-r--r--tools/clang-format/fuzzer/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/clang-format/CMakeLists.txt b/tools/clang-format/CMakeLists.txt
index 466cc009b4..c695ba3442 100644
--- a/tools/clang-format/CMakeLists.txt
+++ b/tools/clang-format/CMakeLists.txt
@@ -15,7 +15,7 @@ target_link_libraries(clang-format
${CLANG_FORMAT_LIB_DEPS}
)
-if( LIB_FUZZING_ENGINE OR LLVM_USE_SANITIZE_COVERAGE )
+if( LLVM_LIB_FUZZING_ENGINE OR LLVM_USE_SANITIZE_COVERAGE )
add_subdirectory(fuzzer)
endif()
diff --git a/tools/clang-format/fuzzer/CMakeLists.txt b/tools/clang-format/fuzzer/CMakeLists.txt
index 245186eea1..8f777324af 100644
--- a/tools/clang-format/fuzzer/CMakeLists.txt
+++ b/tools/clang-format/fuzzer/CMakeLists.txt
@@ -11,5 +11,5 @@ add_clang_executable(clang-format-fuzzer
target_link_libraries(clang-format-fuzzer
${CLANG_FORMAT_LIB_DEPS}
- ${LIB_FUZZING_ENGINE}
+ ${LLVM_LIB_FUZZING_ENGINE}
)