1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/tools/llvm-stress/CMakeLists.txt
Chris Bieneman c60c7dbbc4 [CMake] llvm-stress depends on intrinsics_gen
llvm-stress.cpp has the following include chain:

llvm/Analysis/CallGraphSCCPass.h
llvm/Analysis/CallGraph.h
llvm/IR/CallSite.h
llvm/IR/Attributes.h
llvm/IR/Attributes.gen

This means llvm-stress needs to depend on intrinsics_gen.

llvm-svn: 287426
2016-11-19 02:25:54 +00:00

14 lines
173 B
CMake

set(LLVM_LINK_COMPONENTS
Analysis
Core
Support
)
add_llvm_tool(llvm-stress
llvm-stress.cpp
DEPENDS
intrinsics_gen
)
export_executable_symbols(llvm-stress)