[compiler-rt] r280393 - [CMake] Adding compiler-rt-test-depends target
Chris Bieneman via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 1 11:26:52 PDT 2016
Author: cbieneman
Date: Thu Sep 1 13:26:51 2016
New Revision: 280393
URL: http://llvm.org/viewvc/llvm-project?rev=280393&view=rev
Log:
[CMake] Adding compiler-rt-test-depends target
This exposes a target for building the compiler-rt test dependencies and matches llvm-test-depends.
Modified:
compiler-rt/trunk/test/CMakeLists.txt
Modified: compiler-rt/trunk/test/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/CMakeLists.txt?rev=280393&r1=280392&r2=280393&view=diff
==============================================================================
--- compiler-rt/trunk/test/CMakeLists.txt (original)
+++ compiler-rt/trunk/test/CMakeLists.txt Thu Sep 1 13:26:51 2016
@@ -96,5 +96,6 @@ if(COMPILER_RT_STANDALONE_BUILD)
if(NOT TARGET check-all)
add_custom_target(check-all)
endif()
+ add_custom_target(compiler-rt-test-depends DEPENDS ${LLVM_LIT_DEPENDS})
add_dependencies(check-all check-compiler-rt)
endif()
More information about the llvm-commits
mailing list