Files
ladybird/Libraries/LibURL/CMakeLists.txt
Shannon Booth 1c3d503146 LibURL: Remove LibCrypto as a dependency
This was previously a depdency due to the use of
Crypto::get_secure_random for the nonce used for an opaque origin.
Now that this has been moved to AK, we no longer have any dependency
on LibCrypto.
2026-01-26 18:46:59 +01:00

24 lines
500 B
CMake

include(public_suffix)
set(SOURCES
Host.cpp
Origin.cpp
Parser.cpp
Site.cpp
URL.cpp
${PUBLIC_SUFFIX_SOURCES}
Pattern/Canonicalization.cpp
Pattern/Component.cpp
Pattern/ConstructorStringParser.cpp
Pattern/Init.cpp
Pattern/Options.cpp
Pattern/Part.cpp
Pattern/Pattern.cpp
Pattern/PatternParser.cpp
Pattern/String.cpp
Pattern/Tokenizer.cpp
)
ladybird_lib(LibURL url)
target_link_libraries(LibURL PRIVATE LibUnicode LibTextCodec LibRegex)