mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
CMake: Don't build Userland and Tests in aarch64 builds for now
This commit is contained in:
parent
a900792921
commit
57f95bd724
Notes:
sideshowbarker
2024-07-18 05:08:25 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/57f95bd7243 Pull-request: https://github.com/SerenityOS/serenity/pull/9666
1 changed files with 4 additions and 2 deletions
|
@ -338,8 +338,10 @@ serenity_component(
|
||||||
|
|
||||||
add_subdirectory(AK)
|
add_subdirectory(AK)
|
||||||
add_subdirectory(Kernel)
|
add_subdirectory(Kernel)
|
||||||
add_subdirectory(Userland)
|
if(NOT "${SERENITY_ARCH}" STREQUAL "aarch64")
|
||||||
add_subdirectory(Tests)
|
add_subdirectory(Userland)
|
||||||
|
add_subdirectory(Tests)
|
||||||
|
endif()
|
||||||
|
|
||||||
export_components("${CMAKE_BINARY_DIR}/components.ini")
|
export_components("${CMAKE_BINARY_DIR}/components.ini")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue