diff options
Diffstat (limited to 'lldb/unittests/UnwindAssembly/CMakeLists.txt')
-rw-r--r-- | lldb/unittests/UnwindAssembly/CMakeLists.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lldb/unittests/UnwindAssembly/CMakeLists.txt b/lldb/unittests/UnwindAssembly/CMakeLists.txt index 0326011fda8..136fcd9ae97 100644 --- a/lldb/unittests/UnwindAssembly/CMakeLists.txt +++ b/lldb/unittests/UnwindAssembly/CMakeLists.txt @@ -1,5 +1,11 @@ +if ("AArch64" IN_LIST LLVM_TARGETS_TO_BUILD) + add_subdirectory(ARM64) +endif() + +if ("PowerPC" IN_LIST LLVM_TARGETS_TO_BUILD) + add_subdirectory(PPC64) +endif() + if ("X86" IN_LIST LLVM_TARGETS_TO_BUILD) add_subdirectory(x86) endif() - -add_subdirectory(InstEmulation) |