summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-07-27 06:17:48 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-07-27 06:17:48 +0000
commite3120ae6eb1934e83bcecb466e8c3b43f37bf6ff (patch)
tree44a2ddc247beb86bcc7325102d3e361e51feef51
parentb9d0b76e42fd2d4cdfd135220302458d03ad09fe (diff)
downloadclang-e3120ae6eb1934e83bcecb466e8c3b43f37bf6ff.tar.gz
clang-e3120ae6eb1934e83bcecb466e8c3b43f37bf6ff.tar.bz2
clang-e3120ae6eb1934e83bcecb466e8c3b43f37bf6ff.tar.xz
clang/CMakeLists.txt: Move "examples" after building lib and tools.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160848 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 29661fc1c3..de85806957 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -250,14 +250,14 @@ mark_as_advanced(CLANG_EXECUTABLE_VERSION LIBCLANG_LIBRARY_VERSION)
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)