├── .gitattributes ├── .github └── workflows │ └── build-sdl3.yml ├── .gitignore ├── README.md ├── meson-arm64.txt ├── meson-x64.txt └── patches ├── DirectXShaderCompiler.patch ├── SDL_shadercross.patch ├── flac.patch ├── libjpeg-turbo.patch ├── libyuv.patch └── tiff.patch /.gitattributes: -------------------------------------------------------------------------------- 1 | *.patch eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/build-sdl3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/.github/workflows/build-sdl3.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/README.md -------------------------------------------------------------------------------- /meson-arm64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/meson-arm64.txt -------------------------------------------------------------------------------- /meson-x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/meson-x64.txt -------------------------------------------------------------------------------- /patches/DirectXShaderCompiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/patches/DirectXShaderCompiler.patch -------------------------------------------------------------------------------- /patches/SDL_shadercross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/patches/SDL_shadercross.patch -------------------------------------------------------------------------------- /patches/flac.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/patches/flac.patch -------------------------------------------------------------------------------- /patches/libjpeg-turbo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/patches/libjpeg-turbo.patch -------------------------------------------------------------------------------- /patches/libyuv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/patches/libyuv.patch -------------------------------------------------------------------------------- /patches/tiff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmozeiko/build-sdl3/HEAD/patches/tiff.patch --------------------------------------------------------------------------------