mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 15:40:28 +00:00
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
37 lines
864 B
CMake
37 lines
864 B
CMake
add_subdirectory(AK)
|
|
add_subdirectory(LibCompress)
|
|
add_subdirectory(LibCrypto)
|
|
add_subdirectory(LibDiff)
|
|
add_subdirectory(LibGC)
|
|
add_subdirectory(LibJS)
|
|
add_subdirectory(LibRegex)
|
|
add_subdirectory(LibTest)
|
|
add_subdirectory(LibTextCodec)
|
|
add_subdirectory(LibThreading)
|
|
add_subdirectory(LibTLS)
|
|
add_subdirectory(LibUnicode)
|
|
add_subdirectory(LibURL)
|
|
add_subdirectory(LibWasm)
|
|
|
|
if (ENABLE_GUI_TARGETS)
|
|
add_subdirectory(LibGfx)
|
|
endif()
|
|
|
|
# FIXME: Increase support for building targets on Windows
|
|
if (WIN32 AND ENABLE_WINDOWS_CI)
|
|
return()
|
|
endif()
|
|
|
|
add_subdirectory(LibCore)
|
|
add_subdirectory(LibDNS)
|
|
add_subdirectory(LibXML)
|
|
|
|
if (ENABLE_GUI_TARGETS)
|
|
add_subdirectory(LibMedia)
|
|
add_subdirectory(LibWeb)
|
|
add_subdirectory(LibWebView)
|
|
endif()
|
|
|
|
if (ENABLE_CLANG_PLUGINS AND CMAKE_CXX_COMPILER_ID MATCHES "Clang$")
|
|
add_subdirectory(ClangPlugins)
|
|
endif()
|