[cfe-commits] r126458 - /cfe/trunk/CMakeLists.txt
Douglas Gregor
dgregor at apple.com
Thu Feb 24 16:32:30 PST 2011
Author: dgregor
Date: Thu Feb 24 18:32:30 2011
New Revision: 126458
URL: http://llvm.org/viewvc/llvm-project?rev=126458&view=rev
Log:
LLVM_INCLUDE_TESTS applies to unit tests, not the normal Clang tests
Modified:
cfe/trunk/CMakeLists.txt
Modified: cfe/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=126458&r1=126457&r2=126458&view=diff
==============================================================================
--- cfe/trunk/CMakeLists.txt (original)
+++ cfe/trunk/CMakeLists.txt Thu Feb 24 18:32:30 2011
@@ -245,9 +245,9 @@
add_subdirectory(runtime)
# TODO: docs.
-if( LLVM_INCLUDE_TESTS )
- add_subdirectory(test)
+add_subdirectory(test)
+if( LLVM_INCLUDE_TESTS )
if( NOT CLANG_BUILT_STANDALONE )
add_subdirectory(unittests)
endif()
More information about the cfe-commits
mailing list