Check in a couple of changes that I apparently never committed:
[oota-llvm.git] / tools / CMakeLists.txt
1 # NOTE: The tools are organized into five groups of four consisting of one
2 # large and three small executables. This is done to minimize memory load
3 # in parallel builds.  Please retain this ordering.
4
5 if( NOT WIN32 OR MSYS OR CYGWIN )
6   # It is useful to build llvm-config before the other tools, so we
7   # have a fresh LibDeps.txt for regenerating the hard-coded library
8   # dependencies. llvm-config/CMakeLists.txt takes care of this but we
9   # must keep llvm-config as the first entry on the list of tools to
10   # be built.
11   add_subdirectory(llvm-config)
12 endif()
13
14 add_subdirectory(opt)
15 add_subdirectory(llvm-as)
16 add_subdirectory(llvm-dis)
17 add_subdirectory(llvm-mc)
18
19 add_subdirectory(llc)
20 add_subdirectory(llvm-ranlib)
21 add_subdirectory(llvm-ar)
22 add_subdirectory(llvm-nm)
23
24 add_subdirectory(llvm-ld)
25 add_subdirectory(llvm-prof)
26 add_subdirectory(llvm-link)
27 add_subdirectory(lli)
28
29 add_subdirectory(llvm-extract)
30 add_subdirectory(llvm-diff)
31
32 add_subdirectory(bugpoint)
33 add_subdirectory(bugpoint-passes)
34 add_subdirectory(llvm-bcanalyzer)
35 add_subdirectory(llvm-stub)
36 add_subdirectory(edis)
37 add_subdirectory(llvmc)
38
39 if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/clang/CMakeLists.txt )
40   add_subdirectory( ${CMAKE_CURRENT_SOURCE_DIR}/clang )
41 endif( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/clang/CMakeLists.txt )
42
43 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)