Move type handling to make sure we get all created types that aren't
[oota-llvm.git] / tools / CMakeLists.txt
1 # NOTE: The tools are organized into groups of four consisting of one large and
2 # three small executables. This is done to minimize memory load in parallel
3 # builds.  Please retain this ordering.
4
5 # If polly exists and is not disabled compile it and add it to the LLVM tools.
6 option(LLVM_BUILD_POLLY "Compile polly" ON)
7 if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/polly/CMakeLists.txt )
8   if (LLVM_BUILD_POLLY)
9     add_subdirectory( ${CMAKE_CURRENT_SOURCE_DIR}/polly)
10   endif (LLVM_BUILD_POLLY)
11 endif( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/polly/CMakeLists.txt )
12
13 if( NOT WIN32 OR MSYS OR CYGWIN )
14   # We currently require 'sed' to build llvm-config, so don't try to build it on
15   # pure Win32.
16   add_subdirectory(llvm-config)
17 endif()
18
19 add_subdirectory(opt)
20 add_subdirectory(llvm-as)
21 add_subdirectory(llvm-dis)
22 add_subdirectory(llvm-mc)
23
24 add_subdirectory(llc)
25 add_subdirectory(llvm-ranlib)
26 add_subdirectory(llvm-ar)
27 add_subdirectory(llvm-nm)
28 add_subdirectory(llvm-size)
29
30 add_subdirectory(llvm-ld)
31 add_subdirectory(llvm-prof)
32 add_subdirectory(llvm-link)
33 add_subdirectory(lli)
34
35 add_subdirectory(llvm-extract)
36 add_subdirectory(llvm-diff)
37 add_subdirectory(macho-dump)
38 add_subdirectory(llvm-objdump)
39 add_subdirectory(llvm-rtdyld)
40 add_subdirectory(llvm-dwarfdump)
41
42 add_subdirectory(bugpoint)
43 add_subdirectory(bugpoint-passes)
44 add_subdirectory(llvm-bcanalyzer)
45 add_subdirectory(llvm-stub)
46 add_subdirectory(edis)
47
48 if( NOT WIN32 )
49   add_subdirectory(lto)
50 endif()
51
52 if( LLVM_ENABLE_PIC )
53   # TODO: support other systems:
54   if( CMAKE_SYSTEM_NAME STREQUAL "Linux" )
55     add_subdirectory(gold)
56   endif()
57 endif()
58
59 set(LLVM_CLANG_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/clang" CACHE PATH "Path to Clang source directory")
60
61 if (NOT ${LLVM_CLANG_SOURCE_DIR} STREQUAL ""
62     AND EXISTS ${LLVM_CLANG_SOURCE_DIR}/CMakeLists.txt)
63   option(LLVM_BUILD_CLANG "Whether to build Clang as part of LLVM" ON)
64   if (${LLVM_BUILD_CLANG})
65     add_subdirectory(${LLVM_CLANG_SOURCE_DIR} clang)
66   endif()
67 endif ()
68
69 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)