mirror of
https://github.com/holub/mame
synced 2025-05-16 19:00:43 +03:00

* 3rdparty/zstd: Added Zstandard compression library version 1.5.5. * util/unzip.cpp: Added support for Zstandard compression (method 93). * util/chdcodec.cpp: Added support for Zstandard compression. * 3rdparty/flac: Always define NDEBUG to avoid log spam.
8 lines
262 B
Bash
Executable File
8 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
|
|
println "+ zstd -r * --output-dir-mirror=\"\""
|
|
zstd -r * --output-dir-mirror="" && die "Should not allow empty output dir!"
|
|
println "+ zstd -r * --output-dir-flat=\"\""
|
|
zstd -r * --output-dir-flat="" && die "Should not allow empty output dir!"
|
|
exit 0
|