Revert "Initial dsymutil tool commit."
[oota-llvm.git] / tools / CMakeLists.txt
1 add_llvm_tool_subdirectory(llvm-config)
2
3 # Build polly before the tools: the tools link against polly when
4 # LINK_POLLY_INTO_TOOLS is set.
5 if(WITH_POLLY)
6   add_llvm_external_project(polly)
7 else(WITH_POLLY)
8   list(APPEND LLVM_IMPLICIT_PROJECT_IGNORE "${LLVM_MAIN_SRC_DIR}/tools/polly")
9 endif(WITH_POLLY)
10
11 if( LLVM_BUILD_LLVM_DYLIB )
12   add_llvm_tool_subdirectory(llvm-shlib)
13 else()
14   ignore_llvm_tool_subdirectory(llvm-shlib)
15 endif()
16
17 add_llvm_tool_subdirectory(opt)
18 add_llvm_tool_subdirectory(llvm-as)
19 add_llvm_tool_subdirectory(llvm-dis)
20 add_llvm_tool_subdirectory(llvm-mc)
21
22 add_llvm_tool_subdirectory(llc)
23 add_llvm_tool_subdirectory(llvm-ar)
24 add_llvm_tool_subdirectory(llvm-nm)
25 add_llvm_tool_subdirectory(llvm-size)
26
27 add_llvm_tool_subdirectory(llvm-cov)
28 add_llvm_tool_subdirectory(llvm-profdata)
29 add_llvm_tool_subdirectory(llvm-link)
30 add_llvm_tool_subdirectory(lli)
31
32 add_llvm_tool_subdirectory(llvm-extract)
33 add_llvm_tool_subdirectory(llvm-diff)
34 add_llvm_tool_subdirectory(macho-dump)
35 add_llvm_tool_subdirectory(llvm-objdump)
36 add_llvm_tool_subdirectory(llvm-readobj)
37 add_llvm_tool_subdirectory(llvm-rtdyld)
38 add_llvm_tool_subdirectory(llvm-dwarfdump)
39 add_llvm_tool_subdirectory(llvm-vtabledump)
40 if( LLVM_USE_INTEL_JITEVENTS )
41   add_llvm_tool_subdirectory(llvm-jitlistener)
42 else()
43   ignore_llvm_tool_subdirectory(llvm-jitlistener)
44 endif( LLVM_USE_INTEL_JITEVENTS )
45
46 add_llvm_tool_subdirectory(bugpoint)
47 add_llvm_tool_subdirectory(bugpoint-passes)
48 add_llvm_tool_subdirectory(llvm-bcanalyzer)
49 add_llvm_tool_subdirectory(llvm-stress)
50 add_llvm_tool_subdirectory(llvm-mcmarkup)
51
52 add_llvm_tool_subdirectory(verify-uselistorder)
53
54 add_llvm_tool_subdirectory(llvm-symbolizer)
55
56 add_llvm_tool_subdirectory(llvm-c-test)
57
58 add_llvm_tool_subdirectory(obj2yaml)
59 add_llvm_tool_subdirectory(yaml2obj)
60
61 add_llvm_tool_subdirectory(llvm-go)
62
63 if(NOT CYGWIN AND LLVM_ENABLE_PIC)
64   add_llvm_tool_subdirectory(lto)
65   add_llvm_tool_subdirectory(llvm-lto)
66 else()
67   ignore_llvm_tool_subdirectory(lto)
68   ignore_llvm_tool_subdirectory(llvm-lto)
69 endif()
70
71 add_llvm_tool_subdirectory(gold)
72
73 add_llvm_external_project(clang)
74 add_llvm_external_project(llgo)
75
76 if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" )
77   add_llvm_external_project(lld)
78   add_llvm_external_project(lldb)
79
80   # Automatically add remaining sub-directories containing a 'CMakeLists.txt'
81   # file as external projects.
82   add_llvm_implicit_external_projects()
83 endif()
84
85 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)