From 766cbf4937e86dc471fe437e45d56e20c0227d10 Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sun, 15 Jun 2025 13:27:58 +1200 Subject: [PATCH] LibGfx: Remove dependency on LibURL This was previously a dependency (from ICC, if I recall correctly), but this no longer appears to be the case. --- Libraries/LibGfx/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGfx/CMakeLists.txt b/Libraries/LibGfx/CMakeLists.txt index 3e3e0ad5ec0..87f96ff6348 100644 --- a/Libraries/LibGfx/CMakeLists.txt +++ b/Libraries/LibGfx/CMakeLists.txt @@ -82,7 +82,7 @@ endif() serenity_lib(LibGfx gfx) -target_link_libraries(LibGfx PRIVATE LibCompress LibCore LibCrypto LibFileSystem LibRIFF LibTextCodec LibIPC LibUnicode LibURL) +target_link_libraries(LibGfx PRIVATE LibCompress LibCore LibCrypto LibFileSystem LibRIFF LibTextCodec LibIPC LibUnicode) set(generated_sources TIFFMetadata.h TIFFTagHandler.cpp) list(TRANSFORM generated_sources PREPEND "ImageFormats/")