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.
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 )
9 add_subdirectory( ${CMAKE_CURRENT_SOURCE_DIR}/polly)
10 endif (LLVM_BUILD_POLLY)
11 endif( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/polly/CMakeLists.txt )
13 if( NOT WIN32 OR MSYS OR CYGWIN )
14 # It is useful to build llvm-config before the other tools, so we
15 # have a fresh LibDeps.txt for regenerating the hard-coded library
16 # dependencies. llvm-config/CMakeLists.txt takes care of this but we
17 # must keep llvm-config as the first entry on the list of tools to
19 add_subdirectory(llvm-config)
23 add_subdirectory(llvm-as)
24 add_subdirectory(llvm-dis)
25 add_subdirectory(llvm-mc)
28 add_subdirectory(llvm-ranlib)
29 add_subdirectory(llvm-ar)
30 add_subdirectory(llvm-nm)
32 add_subdirectory(llvm-ld)
33 add_subdirectory(llvm-prof)
34 add_subdirectory(llvm-link)
37 add_subdirectory(llvm-extract)
38 add_subdirectory(llvm-diff)
40 add_subdirectory(bugpoint)
41 add_subdirectory(bugpoint-passes)
42 add_subdirectory(llvm-bcanalyzer)
43 add_subdirectory(llvm-stub)
44 add_subdirectory(edis)
45 add_subdirectory(llvmc)
47 if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/clang/CMakeLists.txt )
48 add_subdirectory( ${CMAKE_CURRENT_SOURCE_DIR}/clang )
49 endif( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/clang/CMakeLists.txt )
51 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)