From 57f95bd724349a56cd6846a066cd62505569f169 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sat, 28 Aug 2021 12:56:51 -0400 Subject: [PATCH] CMake: Don't build Userland and Tests in aarch64 builds for now --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 42d83548de2540..b968e25d5d29a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -338,8 +338,10 @@ serenity_component( add_subdirectory(AK) add_subdirectory(Kernel) -add_subdirectory(Userland) -add_subdirectory(Tests) +if(NOT "${SERENITY_ARCH}" STREQUAL "aarch64") + add_subdirectory(Userland) + add_subdirectory(Tests) +endif() export_components("${CMAKE_BINARY_DIR}/components.ini")