Skip to content

Commit

Permalink
CMake: Don't build Userland and Tests in aarch64 builds for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nico authored and linusg committed Aug 28, 2021
1 parent a900792 commit 57f95bd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 57f95bd

Please sign in to comment.