| OLD | NEW |
| 1 add_llvm_tool_subdirectory(llvm-config) | 1 add_llvm_tool_subdirectory(llvm-config) |
| 2 | 2 |
| 3 # Build polly before the tools: the tools link against polly when | 3 # Build polly before the tools: the tools link against polly when |
| 4 # LINK_POLLY_INTO_TOOLS is set. | 4 # LINK_POLLY_INTO_TOOLS is set. |
| 5 if(WITH_POLLY) | 5 if(WITH_POLLY) |
| 6 add_llvm_external_project(polly) | 6 add_llvm_external_project(polly) |
| 7 else(WITH_POLLY) | 7 else(WITH_POLLY) |
| 8 list(APPEND LLVM_IMPLICIT_PROJECT_IGNORE "${LLVM_MAIN_SRC_DIR}/tools/polly") | 8 list(APPEND LLVM_IMPLICIT_PROJECT_IGNORE "${LLVM_MAIN_SRC_DIR}/tools/polly") |
| 9 endif(WITH_POLLY) | 9 endif(WITH_POLLY) |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 add_llvm_tool_subdirectory(verify-uselistorder) | 54 add_llvm_tool_subdirectory(verify-uselistorder) |
| 55 | 55 |
| 56 add_llvm_tool_subdirectory(llvm-symbolizer) | 56 add_llvm_tool_subdirectory(llvm-symbolizer) |
| 57 add_llvm_tool_subdirectory(pnacl-abicheck) | 57 add_llvm_tool_subdirectory(pnacl-abicheck) |
| 58 add_llvm_tool_subdirectory(pnacl-bcanalyzer) | 58 add_llvm_tool_subdirectory(pnacl-bcanalyzer) |
| 59 add_llvm_tool_subdirectory(pnacl-bccompress) | 59 add_llvm_tool_subdirectory(pnacl-bccompress) |
| 60 add_llvm_tool_subdirectory(pnacl-bcdis) | 60 add_llvm_tool_subdirectory(pnacl-bcdis) |
| 61 add_llvm_tool_subdirectory(pnacl-bcfuzz) | 61 add_llvm_tool_subdirectory(pnacl-bcfuzz) |
| 62 add_llvm_tool_subdirectory(pnacl-freeze) | 62 add_llvm_tool_subdirectory(pnacl-freeze) |
| 63 add_llvm_tool_subdirectory(pnacl-hack-memset) |
| 63 add_llvm_tool_subdirectory(pnacl-thaw) | 64 add_llvm_tool_subdirectory(pnacl-thaw) |
| 64 add_llvm_tool_subdirectory(pnacl-addnames) | 65 add_llvm_tool_subdirectory(pnacl-addnames) |
| 65 | 66 |
| 66 add_llvm_tool_subdirectory(llvm-c-test) | 67 add_llvm_tool_subdirectory(llvm-c-test) |
| 67 | 68 |
| 68 add_llvm_tool_subdirectory(obj2yaml) | 69 add_llvm_tool_subdirectory(obj2yaml) |
| 69 add_llvm_tool_subdirectory(yaml2obj) | 70 add_llvm_tool_subdirectory(yaml2obj) |
| 70 | 71 |
| 71 add_llvm_tool_subdirectory(llvm-go) | 72 add_llvm_tool_subdirectory(llvm-go) |
| 72 | 73 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 89 if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" ) | 90 if( NOT LLVM_INCLUDE_TOOLS STREQUAL "bootstrap-only" ) |
| 90 add_llvm_external_project(lld) | 91 add_llvm_external_project(lld) |
| 91 add_llvm_external_project(lldb) | 92 add_llvm_external_project(lldb) |
| 92 | 93 |
| 93 # Automatically add remaining sub-directories containing a 'CMakeLists.txt' | 94 # Automatically add remaining sub-directories containing a 'CMakeLists.txt' |
| 94 # file as external projects. | 95 # file as external projects. |
| 95 add_llvm_implicit_external_projects() | 96 add_llvm_implicit_external_projects() |
| 96 endif() | 97 endif() |
| 97 | 98 |
| 98 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) | 99 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) |
| OLD | NEW |