summaryrefslogtreecommitdiff
path: root/Meta/Lagom
diff options
context:
space:
mode:
authorMichiel Visser <opensource@webmichiel.nl>2022-03-31 21:07:45 +0200
committerAndreas Kling <kling@serenityos.org>2022-05-21 22:41:40 +0200
commitd6a5b11f04dcb9760bd3723793bfe2c25d585aab (patch)
tree9a22416d415f86126912e9cf6b2a795216177d1e /Meta/Lagom
parent68772463cb662975cd4dfdc232fb1be38487ad3c (diff)
downloadserenity-d6a5b11f04dcb9760bd3723793bfe2c25d585aab.zip
LibCompress: Implement Brotli decompressor
This implements the BrotliDecompressionStream, which is a Core::Stream that can decompress another Core::Stream.
Diffstat (limited to 'Meta/Lagom')
-rw-r--r--Meta/Lagom/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt
index 94ee50a227..f514b34e7c 100644
--- a/Meta/Lagom/CMakeLists.txt
+++ b/Meta/Lagom/CMakeLists.txt
@@ -569,6 +569,7 @@ if (BUILD_LAGOM)
endforeach()
# Compress
+ file(COPY "${SERENITY_PROJECT_ROOT}/Tests/LibCompress/brotli-test-files" DESTINATION "./")
file(GLOB LIBCOMPRESS_TESTS CONFIGURE_DEPENDS "../../Tests/LibCompress/*.cpp")
foreach(source ${LIBCOMPRESS_TESTS})
lagom_test(${source} LIBS LagomCompress)