r249283 - [CMake] Move CLANG_INCLUDE_TESTS in advance of add_subdirectory(tools).

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Sun Oct 4 19:04:49 PDT 2015


Author: chapuni
Date: Sun Oct  4 21:04:49 2015
New Revision: 249283

URL: http://llvm.org/viewvc/llvm-project?rev=249283&view=rev
Log:
[CMake] Move CLANG_INCLUDE_TESTS in advance of add_subdirectory(tools).

The target "check-clang-tools" is affected by CLANG_INCLUDE_TESTS but it was undefined in 1st configuration procedure.

Modified:
    cfe/trunk/CMakeLists.txt

Modified: cfe/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=249283&r1=249282&r2=249283&view=diff
==============================================================================
--- cfe/trunk/CMakeLists.txt (original)
+++ cfe/trunk/CMakeLists.txt Sun Oct  4 21:04:49 2015
@@ -490,6 +490,10 @@ set(LIBCLANG_LIBRARY_VERSION
     "Version number that will be placed into the libclang library , in the form XX.YY")
 mark_as_advanced(CLANG_EXECUTABLE_VERSION LIBCLANG_LIBRARY_VERSION)
 
+option(CLANG_INCLUDE_TESTS
+       "Generate build targets for the Clang unit tests."
+       ${LLVM_INCLUDE_TESTS})
+
 add_subdirectory(utils/TableGen)
 
 add_subdirectory(include)
@@ -510,10 +514,6 @@ else()
 endif()
 add_subdirectory(examples)
 
-option(CLANG_INCLUDE_TESTS
-       "Generate build targets for the Clang unit tests."
-       ${LLVM_INCLUDE_TESTS})
-
 if( CLANG_INCLUDE_TESTS )
   if(EXISTS ${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include/gtest/gtest.h)
     add_subdirectory(unittests)




More information about the cfe-commits mailing list