mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
ENABLE_WINDOWS_CI and the *_CI presets were initially added back when
the AK library and all the AK Test* executables were the only targets
that supported building and running in CI. Since then, almost all the
targets in the codebase are built on Windows besides the following:
- LibLine
- test-262-runner
Since these targets above are not required to actually run or test the
browser on Windows in its current experimental state, fully disabling
them should be fine for now.
ENABLE_WINDOWS_CI was also used to exclude test-web from ctest. This
can be fully disabled on Windows for now until proper runtime support
is added.
The remaining locations were all using ENABLE_WINDOWS_CI as a proxy for
ENABLE_ADDRESS_SANITIZER, so we can just be explicit instead.
The new presets map much more directly to the unix Release, Debug, and
Sanitizer presets which should make setting up ladybird on Windows less
confusing.
We also make the new Windows_Experimental_Release preset the default in
ladybird.py to match Unix.
38 lines
923 B
CMake
38 lines
923 B
CMake
add_subdirectory(LibCompress)
|
|
add_subdirectory(LibCrypto)
|
|
add_subdirectory(LibDatabase)
|
|
add_subdirectory(LibDiff)
|
|
add_subdirectory(LibDNS)
|
|
add_subdirectory(LibGC)
|
|
add_subdirectory(LibHTTP)
|
|
add_subdirectory(LibIPC)
|
|
add_subdirectory(LibJS)
|
|
add_subdirectory(LibRegex)
|
|
add_subdirectory(LibRequests)
|
|
add_subdirectory(LibSyntax)
|
|
add_subdirectory(LibTest)
|
|
add_subdirectory(LibTextCodec)
|
|
add_subdirectory(LibThreading)
|
|
add_subdirectory(LibTLS)
|
|
add_subdirectory(LibUnicode)
|
|
add_subdirectory(LibURL)
|
|
add_subdirectory(LibWasm)
|
|
add_subdirectory(LibWebSocket)
|
|
add_subdirectory(LibXML)
|
|
|
|
if (ENABLE_GUI_TARGETS)
|
|
add_subdirectory(LibDevTools)
|
|
add_subdirectory(LibGfx)
|
|
add_subdirectory(LibImageDecoderClient)
|
|
add_subdirectory(LibMedia)
|
|
add_subdirectory(LibWeb)
|
|
add_subdirectory(LibWebView)
|
|
endif()
|
|
|
|
# FIXME: Increase support for building targets on Windows
|
|
if (WIN32)
|
|
return()
|
|
endif()
|
|
|
|
add_subdirectory(LibLine)
|