26 lines
1.2 KiB
Text
26 lines
1.2 KiB
Text
//
|
|
// build.xcconfig
|
|
//
|
|
|
|
// Configuration settings file format documentation can be found at:
|
|
// https://help.apple.com/xcode/#/dev745c5c974
|
|
|
|
// Uncomment these lines to enable AVIF support
|
|
// If you do this, you should run external/download.sh to download the decode libraries and add avif.framework to your application bundle.
|
|
AVIF_PREPROCESSOR_DEFINITIONS = LOAD_AVIF
|
|
AVIF_FRAMEWORK_LDFLAGS = -weak_framework avif
|
|
|
|
// Uncomment these lines to enable JPEG-XL support
|
|
// If you do this, you should run external/download.sh to download the decode libraries and add jxl.framework to your application bundle.
|
|
JXL_PREPROCESSOR_DEFINITIONS = LOAD_JXL
|
|
JXL_FRAMEWORK_LDFLAGS = -weak_framework jxl
|
|
|
|
// Uncomment these lines to enable libpng support
|
|
// If you do this, you should run external/download.sh to download the decode libraries and add png.framework to your application bundle.
|
|
//PNG_PREPROCESSOR_DEFINITIONS = SDL_IMAGE_LIBPNG INCLUDE_PNG_FRAMEWORK
|
|
//PNG_FRAMEWORK_LDFLAGS = -weak_framework png
|
|
|
|
// Uncomment these lines to enable WebP support
|
|
// If you do this, you should run external/download.sh to download the decode libraries and add webp.framework to your application bundle.
|
|
WEBP_PREPROCESSOR_DEFINITIONS = LOAD_WEBP
|
|
WEBP_FRAMEWORK_LDFLAGS = -weak_framework webp
|