This patch updates a bunch of places where add_dependencies was being explicitly called to add dependencies on intrinsics_gen to instead use the DEPENDS named parameter. This cleanup is needed for a patch I'm working on to add a dependency debugging mode to the build system. llvm-svn: 287408
15 lines
277 B
CMake
15 lines
277 B
CMake
if(NOT LLDB_BUILT_STANDALONE)
|
|
set(tablegen_deps intrinsics_gen)
|
|
endif()
|
|
|
|
|
|
add_lldb_library(lldbPluginRenderScriptRuntime
|
|
RenderScriptRuntime.cpp
|
|
RenderScriptExpressionOpts.cpp
|
|
RenderScriptx86ABIFixups.cpp
|
|
RenderScriptScriptGroup.cpp
|
|
|
|
DEPENDS
|
|
${tablegen_deps}
|
|
)
|