1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:57:35 +00:00

LibCompress: Rename libcompression.so to libcompress.so

This commit is contained in:
Jelle Raaijmakers 2021-03-07 18:01:10 +01:00 committed by Andreas Kling
parent e6f886677e
commit f9f9cda025
2 changed files with 2 additions and 2 deletions

View file

@ -10,5 +10,5 @@ configure() {
run ./configure \ run ./configure \
--host=${SERENITY_ARCH}-pc-serenity \ --host=${SERENITY_ARCH}-pc-serenity \
--with-sdl-prefix=${SERENITY_ROOT}/Build/Root/usr \ --with-sdl-prefix=${SERENITY_ROOT}/Build/Root/usr \
LIBS="-lgui -lgfx -lipc -lcore -lcompression" LIBS="-lgui -lgfx -lipc -lcore -lcompress"
} }

View file

@ -4,5 +4,5 @@ set(SOURCES
Gzip.cpp Gzip.cpp
) )
serenity_lib(LibCompress compression) serenity_lib(LibCompress compress)
target_link_libraries(LibCompress LibC LibCrypto) target_link_libraries(LibCompress LibC LibCrypto)