[compiler-rt] r247606 - [CMake] If COMPILER_RT_INCLUDE_TESTS is off we shouldn't include the root test directory.

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 14 12:54:12 PDT 2015


Author: cbieneman
Date: Mon Sep 14 14:54:12 2015
New Revision: 247606

URL: http://llvm.org/viewvc/llvm-project?rev=247606&view=rev
Log:
[CMake] If COMPILER_RT_INCLUDE_TESTS is off we shouldn't include the root test directory.

Modified:
    compiler-rt/trunk/CMakeLists.txt

Modified: compiler-rt/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/CMakeLists.txt?rev=247606&r1=247605&r2=247606&view=diff
==============================================================================
--- compiler-rt/trunk/CMakeLists.txt (original)
+++ compiler-rt/trunk/CMakeLists.txt Mon Sep 14 14:54:12 2015
@@ -311,5 +311,5 @@ add_subdirectory(lib)
 
 if(COMPILER_RT_INCLUDE_TESTS)
   add_subdirectory(unittests)
+  add_subdirectory(test)
 endif()
-add_subdirectory(test)




More information about the llvm-commits mailing list