summaryrefslogtreecommitdiff
path: root/tools/clang-format
diff options
context:
space:
mode:
authorMatt Morehouse <mascasa@google.com>2017-12-06 19:52:40 +0000
committerMatt Morehouse <mascasa@google.com>2017-12-06 19:52:40 +0000
commit14cce4bde2b3500aac71af937234cbcb5e2fccb7 (patch)
treeb730adaa93ae3fa0db2c602065f1ddc821a38ff0 /tools/clang-format
parent8f60a2a4c1e8e3cf5c173e04cacadc8935b29751 (diff)
downloadclang-14cce4bde2b3500aac71af937234cbcb5e2fccb7.tar.gz
[CMake] Use PRIVATE in target_link_libraries for fuzzers.
Several fuzzers were missed by r319840. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@319948 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/clang-format')
-rw-r--r--tools/clang-format/fuzzer/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/clang-format/fuzzer/CMakeLists.txt b/tools/clang-format/fuzzer/CMakeLists.txt
index 8f777324af..87ae05b62d 100644
--- a/tools/clang-format/fuzzer/CMakeLists.txt
+++ b/tools/clang-format/fuzzer/CMakeLists.txt
@@ -10,6 +10,7 @@ add_clang_executable(clang-format-fuzzer
)
target_link_libraries(clang-format-fuzzer
+ PRIVATE
${CLANG_FORMAT_LIB_DEPS}
${LLVM_LIB_FUZZING_ENGINE}
)