From 263b7cf06b6b675c38f7343e2d1deeb7b1153a85 Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 13 Nov 2022 13:54:06 -0500 Subject: [PATCH] Redo target_sources --- src/dynarmic/CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/dynarmic/CMakeLists.txt b/src/dynarmic/CMakeLists.txt index 423de034..35335d70 100644 --- a/src/dynarmic/CMakeLists.txt +++ b/src/dynarmic/CMakeLists.txt @@ -406,14 +406,16 @@ elseif(ARCHITECTURE STREQUAL "arm64") backend/arm64/a32_address_space.h backend/arm64/a32_core.h backend/arm64/a32_interface.cpp - - # Move this to the list below when implemented - backend/arm64/a64_interface.cpp ) endif() if ("A64" IN_LIST DYNARMIC_FRONTENDS) - message(FATAL_ERROR "TODO: Unimplemented frontend for this host architecture") + target_sources(dynarmic PRIVATE + backend/arm64/a64_address_space.cpp + backend/arm64/a64_address_space.h + backend/arm64/a64_core.h + backend/arm64/a64_interface.cpp + ) endif() else() message(FATAL_ERROR "Unsupported architecture")