CMake: Don't build Userland and Tests in aarch64 builds for now

This commit is contained in:
Nico Weber 2021-08-28 12:56:51 -04:00 committed by Linus Groh
parent a900792921
commit 57f95bd724
Notes: sideshowbarker 2024-07-18 05:08:25 +09:00

View File

@ -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")