mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
aba44b666c
llvm-diff.cpp has the following include chain: llvm/IR/Module.h llvm/IR/Function.h llvm/IR/Argument.h llvm/IR/Attributes.h llvm/IR/Attributes.gen This means llvm-diff needs to depend on intrinsics_gen. llvm-svn: 287427
16 lines
186 B
CMake
16 lines
186 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
IRReader
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-diff
|
|
llvm-diff.cpp
|
|
DiffConsumer.cpp
|
|
DiffLog.cpp
|
|
DifferenceEngine.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|