[cfe-commits] r160848 - /cfe/trunk/CMakeLists.txt

NAKAMURA Takumi geek4civic at gmail.com
Thu Jul 26 23:17:49 PDT 2012


Author: chapuni
Date: Fri Jul 27 01:17:48 2012
New Revision: 160848

URL: http://llvm.org/viewvc/llvm-project?rev=160848&view=rev
Log:
clang/CMakeLists.txt: Move "examples" after building lib and tools.

Modified:
    cfe/trunk/CMakeLists.txt

Modified: cfe/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=160848&r1=160847&r2=160848&view=diff
==============================================================================
--- cfe/trunk/CMakeLists.txt (original)
+++ cfe/trunk/CMakeLists.txt Fri Jul 27 01:17:48 2012
@@ -250,14 +250,14 @@
 
 add_subdirectory(utils/TableGen)
 
-option(CLANG_BUILD_EXAMPLES "Build CLANG example programs by default." OFF)
-add_subdirectory(examples)
-
 add_subdirectory(include)
 add_subdirectory(lib)
 add_subdirectory(tools)
 add_subdirectory(runtime)
 
+option(CLANG_BUILD_EXAMPLES "Build CLANG example programs by default." OFF)
+add_subdirectory(examples)
+
 # TODO: docs.
 add_subdirectory(test)
 





More information about the cfe-commits mailing list