ladybird/Userland/Libraries/LibURL/CMakeLists.txt
Timothy Flynn 576c2f4f4d LibURL+LibUnicode+LibWebView: Handle punycode directly in LibURL
We had defined punycode handling in LibUnicode when LibURL (AK at the
time) was unable to depend on LibUnicode. This is no longer the case.
2024-03-26 12:25:21 -04:00

7 lines
116 B
CMake

set(SOURCES
URL.cpp
Parser.cpp
)
serenity_lib(LibURL url)
target_link_libraries(LibURL PRIVATE LibUnicode)