mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-30 03:20:28 +00:00
146dcf4856
There seems to be more incorrect assumptions about Clang-built executables' memory layout than expected. These make the CI fail even though the system is functional in all other aspects. While this is being fixed, let's just disable tests for UserspaceEmulator.
22 lines
601 B
CMake
22 lines
601 B
CMake
add_subdirectory(AK)
|
|
add_subdirectory(Kernel)
|
|
add_subdirectory(LibC)
|
|
add_subdirectory(LibCompress)
|
|
add_subdirectory(LibCore)
|
|
add_subdirectory(LibCpp)
|
|
add_subdirectory(LibELF)
|
|
add_subdirectory(LibGfx)
|
|
add_subdirectory(LibIMAP)
|
|
add_subdirectory(LibJS)
|
|
add_subdirectory(LibM)
|
|
add_subdirectory(LibPthread)
|
|
add_subdirectory(LibRegex)
|
|
add_subdirectory(LibSQL)
|
|
add_subdirectory(LibUnicode)
|
|
add_subdirectory(LibWasm)
|
|
add_subdirectory(LibWeb)
|
|
if (${SERENITY_ARCH} STREQUAL "i686" AND NOT USE_CLANG_TOOLCHAIN)
|
|
add_subdirectory(UserspaceEmulator)
|
|
endif()
|
|
add_subdirectory(LibCrypto)
|
|
add_subdirectory(LibTLS)
|