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
|
add_llvm_tool(llvm-exegesis
|
||||||
llvm-exegesis.cpp
|
llvm-exegesis.cpp
|
||||||
|
|
||||||
|
DEPENDS
|
||||||
|
intrinsics_gen
|
||||||
)
|
)
|
||||||
|
|
||||||
add_subdirectory(lib)
|
add_subdirectory(lib)
|
||||||
|
|
|
@ -8,6 +8,9 @@ add_llvm_library(LLVMExegesisAArch64
|
||||||
|
|
||||||
STATIC
|
STATIC
|
||||||
|
|
||||||
|
DEPENDS
|
||||||
|
intrinsics_gen
|
||||||
|
|
||||||
LINK_COMPONENTS
|
LINK_COMPONENTS
|
||||||
AArch64
|
AArch64
|
||||||
Exegesis
|
Exegesis
|
||||||
|
|
|
@ -29,6 +29,9 @@ add_llvm_library(LLVMExegesis
|
||||||
|
|
||||||
STATIC
|
STATIC
|
||||||
|
|
||||||
|
DEPENDS
|
||||||
|
intrinsics_gen
|
||||||
|
|
||||||
LINK_COMPONENTS
|
LINK_COMPONENTS
|
||||||
Analysis
|
Analysis
|
||||||
CodeGen
|
CodeGen
|
||||||
|
|
|
@ -8,6 +8,9 @@ add_llvm_library(LLVMExegesisX86
|
||||||
|
|
||||||
STATIC
|
STATIC
|
||||||
|
|
||||||
|
DEPENDS
|
||||||
|
intrinsics_gen
|
||||||
|
|
||||||
LINK_COMPONENTS
|
LINK_COMPONENTS
|
||||||
X86
|
X86
|
||||||
Exegesis
|
Exegesis
|
||||||
|
|
Loading…
Reference in New Issue