mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 19:45:41 -04:00

TODO: zstd has its own official CMake build scripts. We should migrate over to it sometime.
26 lines
652 B
Plaintext
Vendored
26 lines
652 B
Plaintext
Vendored
module libzstd [extern_c] {
|
|
header "zstd.h"
|
|
export *
|
|
config_macros [exhaustive] /* zstd.h */ \
|
|
ZSTD_STATIC_LINKING_ONLY, \
|
|
ZSTDLIB_VISIBLE, \
|
|
ZSTD_DLL_EXPORT, \
|
|
ZSTDLIB_STATIC_API, \
|
|
ZSTD_DISABLE_DEPRECATE_WARNINGS, \
|
|
ZSTD_CLEVEL_DEFAULT, \
|
|
/* zdict.h */ ZDICT_STATIC_LINKING_ONLY, \
|
|
ZDICTLIB_VISIBILITY, \
|
|
ZDICT_DISABLE_DEPRECATE_WARNINGS, \
|
|
/* zstd_errors.h */ ZSTDERRORLIB_VISIBILITY
|
|
|
|
module dictbuilder [extern_c] {
|
|
header "zdict.h"
|
|
export *
|
|
}
|
|
|
|
module errors [extern_c] {
|
|
header "zstd_errors.h"
|
|
export *
|
|
}
|
|
}
|