summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-11-18 23:31:53 +0000
committerChris Bieneman <beanz@apple.com>2016-11-18 23:31:53 +0000
commitb653c4957d21bc1e59a435c627dc2e0351a37c2b (patch)
tree3e753ef52c913d467766372cf223a9fe0fa60c9a /lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime
parent73f03752b6281fd6c29bc4d7c050c6766d22b90e (diff)
downloadbcm5719-llvm-b653c4957d21bc1e59a435c627dc2e0351a37c2b.tar.gz
bcm5719-llvm-b653c4957d21bc1e59a435c627dc2e0351a37c2b.zip
[CMake] NFC. Updating CMake dependency specifications
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
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime')
-rw-r--r--lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt12
1 files changed, 8 insertions, 4 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
index 0b19dba5ab6..cd08f14137d 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
@@ -1,10 +1,14 @@
+if(NOT LLDB_BUILT_STANDALONE)
+ set(tablegen_deps intrinsics_gen)
+endif()
+
+
add_lldb_library(lldbPluginRenderScriptRuntime
RenderScriptRuntime.cpp
RenderScriptExpressionOpts.cpp
RenderScriptx86ABIFixups.cpp
RenderScriptScriptGroup.cpp
- )
-if(NOT LLDB_BUILT_STANDALONE)
- add_dependencies(lldbPluginRenderScriptRuntime intrinsics_gen)
-endif()
+ DEPENDS
+ ${tablegen_deps}
+ )
OpenPOWER on IntegriCloud