Bill Wendling 4d293f215d [llvm-diff] Create libLLVMDiff library
Some tools may want to use the LLVM "diff" code. Move the code into a
library for easy use.

No functionality change intende.

Differential Revision: https://reviews.llvm.org/D107392
2021-08-05 12:05:50 -07:00

15 lines
198 B
CMake

set(LLVM_LINK_COMPONENTS
Core
Support
)
add_llvm_library(LLVMDiff
STATIC
DiffConsumer.cpp
DiffConsumer.h
DifferenceEngine.cpp
DifferenceEngine.h
DiffLog.cpp
DiffLog.h
)