brintos

brintos / llvm-project-archived public Read only

0
0
Text · 329 B · d6e4471 Raw
16 lines · plain
1if ("AArch64" IN_LIST LLVM_TARGETS_TO_BUILD)2  add_subdirectory(ARM64)3endif()4 5if ("PowerPC" IN_LIST LLVM_TARGETS_TO_BUILD)6  add_subdirectory(PPC64)7endif()8 9if ("X86" IN_LIST LLVM_TARGETS_TO_BUILD)10  add_subdirectory(x86)11endif()12 13if (NOT "X86" IN_LIST LLVM_TARGETS_TO_BUILD)14  add_subdirectory(x86-but-no-x86-target)15endif()16