McTwist
McTwist
It would be useful if the script could calculate the total size of all files downloaded. This makes it easier to prepare the necessary storage needed.
It was discovered in cmake that when adding this library as a subproject, it would still install header and library if components is set to `ALL`. It is normally up...
zlib supports `-1` as a compression level, basically setting the compression to `6` (current default). It should be straightforward in `libdeflate_alloc_compressor_ex`: ```c if (compression_level == -1) compression_level = 6; ```...