File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ add_clang_library(clangCodeGen
143143 VarBypassDetector.cpp
144144
145145 DEPENDS
146+ vt_gen
146147 intrinsics_gen
147148 ClangDriverOptions
148149 # These generated headers are included transitively.
Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ endif()
3636if (omp_gen IN_LIST LLVM_COMMON_DEPENDS)
3737 list (REMOVE_ITEM LLVM_COMMON_DEPENDS omp_gen)
3838endif ()
39+ if (vt_gen IN_LIST LLVM_COMMON_DEPENDS)
40+ list (REMOVE_ITEM LLVM_COMMON_DEPENDS vt_gen)
41+ endif ()
3942
4043#
4144# Generate LLVMConfig.cmake for the build tree.
Original file line number Diff line number Diff line change @@ -151,6 +151,9 @@ endif()
151151if (NOT TARGET intrinsics_gen)
152152 add_custom_target (intrinsics_gen)
153153endif ()
154+ if (NOT TARGET vt_gen)
155+ add_custom_target (vt_gen)
156+ endif ()
154157if (NOT TARGET omp_gen)
155158 add_custom_target (omp_gen)
156159endif ()
You can’t perform that action at this time.
0 commit comments