[llvm-commits] [llvm] r116235 - /llvm/trunk/unittests/CMakeLists.txt

Michael J. Spencer bigcheesegs at gmail.com
Mon Oct 11 14:22:34 PDT 2010


Author: mspencer
Date: Mon Oct 11 16:22:34 2010
New Revision: 116235

URL: http://llvm.org/viewvc/llvm-project?rev=116235&view=rev
Log:
Reduce dpendencies for SupportTests.

Modified:
    llvm/trunk/unittests/CMakeLists.txt

Modified: llvm/trunk/unittests/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/CMakeLists.txt?rev=116235&r1=116234&r2=116235&view=diff
==============================================================================
--- llvm/trunk/unittests/CMakeLists.txt (original)
+++ llvm/trunk/unittests/CMakeLists.txt Mon Oct 11 16:22:34 2010
@@ -66,6 +66,25 @@
   ExecutionEngine/JIT/MultiJITTest.cpp
   )
 
+add_llvm_unittest(Transforms
+  Transforms/Utils/Cloning.cpp
+  )
+
+add_llvm_unittest(VMCore
+  VMCore/ConstantsTest.cpp
+  VMCore/DerivedTypesTest.cpp
+  VMCore/InstructionsTest.cpp
+  VMCore/MetadataTest.cpp
+  VMCore/PassManagerTest.cpp
+  VMCore/VerifierTest.cpp
+  )
+
+set(LLVM_LINK_COMPONENTS
+  System
+  Support
+  Core
+  )
+
 add_llvm_unittest(Support
   Support/AllocatorTest.cpp
   Support/Casting.cpp
@@ -80,16 +99,3 @@
   Support/TypeBuilderTest.cpp
   Support/ValueHandleTest.cpp
   )
-
-add_llvm_unittest(Transforms
-  Transforms/Utils/Cloning.cpp
-  )
-
-add_llvm_unittest(VMCore
-  VMCore/ConstantsTest.cpp
-  VMCore/DerivedTypesTest.cpp
-  VMCore/InstructionsTest.cpp
-  VMCore/MetadataTest.cpp
-  VMCore/PassManagerTest.cpp
-  VMCore/VerifierTest.cpp
-  )





More information about the llvm-commits mailing list