forked from OSchip/llvm-project
[cmake] Fix missing DEPENDS.
Not sure how I didn't catch this. llvm-svn: 342154
This commit is contained in:
parent
c6c7bfc4d2
commit
f29b36c76d
|
@ -6,6 +6,9 @@ set(LLVM_LINK_COMPONENTS
|
|||
|
||||
add_llvm_tool(llvm-exegesis
|
||||
llvm-exegesis.cpp
|
||||
|
||||
DEPENDS
|
||||
intrinsics_gen
|
||||
)
|
||||
|
||||
add_subdirectory(lib)
|
||||
|
|
|
@ -8,6 +8,9 @@ add_llvm_library(LLVMExegesisAArch64
|
|||
|
||||
STATIC
|
||||
|
||||
DEPENDS
|
||||
intrinsics_gen
|
||||
|
||||
LINK_COMPONENTS
|
||||
AArch64
|
||||
Exegesis
|
||||
|
|
|
@ -29,6 +29,9 @@ add_llvm_library(LLVMExegesis
|
|||
|
||||
STATIC
|
||||
|
||||
DEPENDS
|
||||
intrinsics_gen
|
||||
|
||||
LINK_COMPONENTS
|
||||
Analysis
|
||||
CodeGen
|
||||
|
|
|
@ -8,6 +8,9 @@ add_llvm_library(LLVMExegesisX86
|
|||
|
||||
STATIC
|
||||
|
||||
DEPENDS
|
||||
intrinsics_gen
|
||||
|
||||
LINK_COMPONENTS
|
||||
X86
|
||||
Exegesis
|
||||
|
|
Loading…
Reference in New Issue