[cmake] Rename LIB_FUZZING_ENGINE to LLVM_LIB_FUZZING_ENGINE.

llvm-svn: 315630
This commit is contained in:
Matt Morehouse 2017-10-12 22:00:09 +00:00
parent 54368668a0
commit fd688c6f35
3 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

@ -1,7 +1,7 @@
set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} FuzzMutate)
set(CXX_FLAGS_NOFUZZ ${CMAKE_CXX_FLAGS})
set(DUMMY_MAIN DummyClangFuzzer.cpp)
if(DEFINED LIB_FUZZING_ENGINE)
if(LLVM_LIB_FUZZING_ENGINE)
unset(DUMMY_MAIN)
elseif(LLVM_USE_SANITIZE_COVERAGE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=fuzzer")
@ -50,7 +50,7 @@ if(CLANG_ENABLE_PROTO_FUZZER)
target_link_libraries(clang-proto-fuzzer
${ProtobufMutator_LIBRARIES}
${PROTOBUF_LIBRARIES}
${LIB_FUZZING_ENGINE}
${LLVM_LIB_FUZZING_ENGINE}
clangCXXProto
clangHandleCXX
clangProtoToCXX
@ -66,6 +66,6 @@ add_clang_executable(clang-fuzzer
)
target_link_libraries(clang-fuzzer
${LIB_FUZZING_ENGINE}
${LLVM_LIB_FUZZING_ENGINE}
clangHandleCXX
)