├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── stable-compilation.yml │ └── update_libraries.yml ├── .gitignore ├── 3ds ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh ├── README.md ├── icu-data-char16.patch ├── pixman-fix-types.patch └── tremor-fix-types.patch ├── LICENSE ├── README.md ├── android ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh ├── 4_build_android_port.sh ├── README.md └── pixman-cpufeatures.patch ├── emscripten ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh ├── README.md └── pixman-wasm.patch ├── ios ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_build_universal.sh ├── 4_cleanup.sh └── README.md ├── linux-static ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh └── README.md ├── macos ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_build_universal.sh ├── 4_cleanup.sh └── README.md ├── shared ├── add_lib.sh ├── common.sh ├── downloader.py ├── extra │ ├── README │ ├── icu-no-mutex.patch │ ├── lhasa.patch │ ├── libsndfile.patch │ ├── mpg123.patch │ ├── opusfile-devkit.patch │ └── pixman-no-tls.patch ├── fluidsynth-no-deps.patch ├── fluidsynth-no-glib.patch ├── fluidsynth-update-patch.sh ├── import.sh ├── ini2sh.py ├── libpng-custom-cc.patch ├── mk-meson-cross.sh ├── packages.ini ├── packages.sh ├── updater.py └── zlib-only-static.patch ├── switch ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh └── README.md ├── tvos ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh └── 3_cleanup.sh ├── vita ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh ├── README.md ├── icu-vita.patch ├── libvita2d-no-jpeg.patch └── vitasdk-cmake.patch ├── wii ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh ├── README.md ├── icu-data-char16.patch └── icu-pkg_genc.patch ├── wiiu ├── 0_build_everything.sh ├── 1_download_library.sh ├── 2_build_toolchain.sh ├── 3_cleanup.sh ├── README.md ├── fluidsynth-no-pthread.patch ├── icu-data-char16.patch └── icu-pkg_genc.patch └── windows ├── README.md ├── build.cmd ├── build_qt5.cmd ├── build_tools.cmd ├── download_prebuilt.cmd ├── fluidsynth-easyrpg ├── fluidsynth-no-deps.patch ├── fluidsynth-no-glib.patch ├── gentables.patch ├── portfile.cmake ├── usage └── vcpkg.json ├── helper ├── prepare.cmd └── windows.cmake ├── icu-easyrpg ├── cleanup_msvc.patch ├── darwin-rpath.patch ├── disable-escapestr-tool.patch ├── disable-static-prefix.patch ├── fix-extra.patch ├── fix-win-build.patch ├── fix_parallel_build_on_windows.patch ├── mingw-dll-install.patch ├── mingw-strict-ansi.diff ├── portfile.cmake ├── remove-MD-from-configure.patch ├── vcpkg-cmake-wrapper.cmake ├── vcpkg-cross-data.patch └── vcpkg.json ├── lhasa-easyrpg ├── fix-out-of-tree-build.patch ├── portfile.cmake ├── usage └── vcpkg.json └── setup_env.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/stable-compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/.github/workflows/stable-compilation.yml -------------------------------------------------------------------------------- /.github/workflows/update_libraries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/.github/workflows/update_libraries.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/.gitignore -------------------------------------------------------------------------------- /3ds/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/0_build_everything.sh -------------------------------------------------------------------------------- /3ds/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/1_download_library.sh -------------------------------------------------------------------------------- /3ds/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/2_build_toolchain.sh -------------------------------------------------------------------------------- /3ds/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/3_cleanup.sh -------------------------------------------------------------------------------- /3ds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/README.md -------------------------------------------------------------------------------- /3ds/icu-data-char16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/icu-data-char16.patch -------------------------------------------------------------------------------- /3ds/pixman-fix-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/pixman-fix-types.patch -------------------------------------------------------------------------------- /3ds/tremor-fix-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/3ds/tremor-fix-types.patch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/README.md -------------------------------------------------------------------------------- /android/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/android/0_build_everything.sh -------------------------------------------------------------------------------- /android/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/android/1_download_library.sh -------------------------------------------------------------------------------- /android/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/android/2_build_toolchain.sh -------------------------------------------------------------------------------- /android/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/android/3_cleanup.sh -------------------------------------------------------------------------------- /android/4_build_android_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/android/4_build_android_port.sh -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/android/README.md -------------------------------------------------------------------------------- /android/pixman-cpufeatures.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/android/pixman-cpufeatures.patch -------------------------------------------------------------------------------- /emscripten/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/emscripten/0_build_everything.sh -------------------------------------------------------------------------------- /emscripten/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/emscripten/1_download_library.sh -------------------------------------------------------------------------------- /emscripten/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/emscripten/2_build_toolchain.sh -------------------------------------------------------------------------------- /emscripten/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/emscripten/3_cleanup.sh -------------------------------------------------------------------------------- /emscripten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/emscripten/README.md -------------------------------------------------------------------------------- /emscripten/pixman-wasm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/emscripten/pixman-wasm.patch -------------------------------------------------------------------------------- /ios/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/ios/0_build_everything.sh -------------------------------------------------------------------------------- /ios/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/ios/1_download_library.sh -------------------------------------------------------------------------------- /ios/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/ios/2_build_toolchain.sh -------------------------------------------------------------------------------- /ios/3_build_universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/ios/3_build_universal.sh -------------------------------------------------------------------------------- /ios/4_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/ios/4_cleanup.sh -------------------------------------------------------------------------------- /ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/ios/README.md -------------------------------------------------------------------------------- /linux-static/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/linux-static/0_build_everything.sh -------------------------------------------------------------------------------- /linux-static/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/linux-static/1_download_library.sh -------------------------------------------------------------------------------- /linux-static/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/linux-static/2_build_toolchain.sh -------------------------------------------------------------------------------- /linux-static/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/linux-static/3_cleanup.sh -------------------------------------------------------------------------------- /linux-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/linux-static/README.md -------------------------------------------------------------------------------- /macos/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/macos/0_build_everything.sh -------------------------------------------------------------------------------- /macos/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/macos/1_download_library.sh -------------------------------------------------------------------------------- /macos/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/macos/2_build_toolchain.sh -------------------------------------------------------------------------------- /macos/3_build_universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/macos/3_build_universal.sh -------------------------------------------------------------------------------- /macos/4_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/macos/4_cleanup.sh -------------------------------------------------------------------------------- /macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/macos/README.md -------------------------------------------------------------------------------- /shared/add_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/add_lib.sh -------------------------------------------------------------------------------- /shared/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/common.sh -------------------------------------------------------------------------------- /shared/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/downloader.py -------------------------------------------------------------------------------- /shared/extra/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/extra/README -------------------------------------------------------------------------------- /shared/extra/icu-no-mutex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/extra/icu-no-mutex.patch -------------------------------------------------------------------------------- /shared/extra/lhasa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/extra/lhasa.patch -------------------------------------------------------------------------------- /shared/extra/libsndfile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/extra/libsndfile.patch -------------------------------------------------------------------------------- /shared/extra/mpg123.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/extra/mpg123.patch -------------------------------------------------------------------------------- /shared/extra/opusfile-devkit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/extra/opusfile-devkit.patch -------------------------------------------------------------------------------- /shared/extra/pixman-no-tls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/extra/pixman-no-tls.patch -------------------------------------------------------------------------------- /shared/fluidsynth-no-deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/fluidsynth-no-deps.patch -------------------------------------------------------------------------------- /shared/fluidsynth-no-glib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/fluidsynth-no-glib.patch -------------------------------------------------------------------------------- /shared/fluidsynth-update-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/fluidsynth-update-patch.sh -------------------------------------------------------------------------------- /shared/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/import.sh -------------------------------------------------------------------------------- /shared/ini2sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/ini2sh.py -------------------------------------------------------------------------------- /shared/libpng-custom-cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/libpng-custom-cc.patch -------------------------------------------------------------------------------- /shared/mk-meson-cross.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/mk-meson-cross.sh -------------------------------------------------------------------------------- /shared/packages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/packages.ini -------------------------------------------------------------------------------- /shared/packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/packages.sh -------------------------------------------------------------------------------- /shared/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/updater.py -------------------------------------------------------------------------------- /shared/zlib-only-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/shared/zlib-only-static.patch -------------------------------------------------------------------------------- /switch/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/switch/0_build_everything.sh -------------------------------------------------------------------------------- /switch/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/switch/1_download_library.sh -------------------------------------------------------------------------------- /switch/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/switch/2_build_toolchain.sh -------------------------------------------------------------------------------- /switch/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/switch/3_cleanup.sh -------------------------------------------------------------------------------- /switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/switch/README.md -------------------------------------------------------------------------------- /tvos/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/tvos/0_build_everything.sh -------------------------------------------------------------------------------- /tvos/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/tvos/1_download_library.sh -------------------------------------------------------------------------------- /tvos/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/tvos/2_build_toolchain.sh -------------------------------------------------------------------------------- /tvos/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/tvos/3_cleanup.sh -------------------------------------------------------------------------------- /vita/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/0_build_everything.sh -------------------------------------------------------------------------------- /vita/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/1_download_library.sh -------------------------------------------------------------------------------- /vita/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/2_build_toolchain.sh -------------------------------------------------------------------------------- /vita/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/3_cleanup.sh -------------------------------------------------------------------------------- /vita/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/README.md -------------------------------------------------------------------------------- /vita/icu-vita.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/icu-vita.patch -------------------------------------------------------------------------------- /vita/libvita2d-no-jpeg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/libvita2d-no-jpeg.patch -------------------------------------------------------------------------------- /vita/vitasdk-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/vita/vitasdk-cmake.patch -------------------------------------------------------------------------------- /wii/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wii/0_build_everything.sh -------------------------------------------------------------------------------- /wii/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wii/1_download_library.sh -------------------------------------------------------------------------------- /wii/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wii/2_build_toolchain.sh -------------------------------------------------------------------------------- /wii/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wii/3_cleanup.sh -------------------------------------------------------------------------------- /wii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wii/README.md -------------------------------------------------------------------------------- /wii/icu-data-char16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wii/icu-data-char16.patch -------------------------------------------------------------------------------- /wii/icu-pkg_genc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wii/icu-pkg_genc.patch -------------------------------------------------------------------------------- /wiiu/0_build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/0_build_everything.sh -------------------------------------------------------------------------------- /wiiu/1_download_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/1_download_library.sh -------------------------------------------------------------------------------- /wiiu/2_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/2_build_toolchain.sh -------------------------------------------------------------------------------- /wiiu/3_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/3_cleanup.sh -------------------------------------------------------------------------------- /wiiu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/README.md -------------------------------------------------------------------------------- /wiiu/fluidsynth-no-pthread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/fluidsynth-no-pthread.patch -------------------------------------------------------------------------------- /wiiu/icu-data-char16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/icu-data-char16.patch -------------------------------------------------------------------------------- /wiiu/icu-pkg_genc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/wiiu/icu-pkg_genc.patch -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/build.cmd -------------------------------------------------------------------------------- /windows/build_qt5.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/build_qt5.cmd -------------------------------------------------------------------------------- /windows/build_tools.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/build_tools.cmd -------------------------------------------------------------------------------- /windows/download_prebuilt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/download_prebuilt.cmd -------------------------------------------------------------------------------- /windows/fluidsynth-easyrpg/fluidsynth-no-deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/fluidsynth-easyrpg/fluidsynth-no-deps.patch -------------------------------------------------------------------------------- /windows/fluidsynth-easyrpg/fluidsynth-no-glib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/fluidsynth-easyrpg/fluidsynth-no-glib.patch -------------------------------------------------------------------------------- /windows/fluidsynth-easyrpg/gentables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/fluidsynth-easyrpg/gentables.patch -------------------------------------------------------------------------------- /windows/fluidsynth-easyrpg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/fluidsynth-easyrpg/portfile.cmake -------------------------------------------------------------------------------- /windows/fluidsynth-easyrpg/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/fluidsynth-easyrpg/usage -------------------------------------------------------------------------------- /windows/fluidsynth-easyrpg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/fluidsynth-easyrpg/vcpkg.json -------------------------------------------------------------------------------- /windows/helper/prepare.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/helper/prepare.cmd -------------------------------------------------------------------------------- /windows/helper/windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/helper/windows.cmake -------------------------------------------------------------------------------- /windows/icu-easyrpg/cleanup_msvc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/cleanup_msvc.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/darwin-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/darwin-rpath.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/disable-escapestr-tool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/disable-escapestr-tool.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/disable-static-prefix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/disable-static-prefix.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/fix-extra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/fix-extra.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/fix-win-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/fix-win-build.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/fix_parallel_build_on_windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/fix_parallel_build_on_windows.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/mingw-dll-install.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/mingw-dll-install.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/mingw-strict-ansi.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/mingw-strict-ansi.diff -------------------------------------------------------------------------------- /windows/icu-easyrpg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/portfile.cmake -------------------------------------------------------------------------------- /windows/icu-easyrpg/remove-MD-from-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/remove-MD-from-configure.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/vcpkg-cmake-wrapper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/vcpkg-cmake-wrapper.cmake -------------------------------------------------------------------------------- /windows/icu-easyrpg/vcpkg-cross-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/vcpkg-cross-data.patch -------------------------------------------------------------------------------- /windows/icu-easyrpg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/icu-easyrpg/vcpkg.json -------------------------------------------------------------------------------- /windows/lhasa-easyrpg/fix-out-of-tree-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/lhasa-easyrpg/fix-out-of-tree-build.patch -------------------------------------------------------------------------------- /windows/lhasa-easyrpg/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/lhasa-easyrpg/portfile.cmake -------------------------------------------------------------------------------- /windows/lhasa-easyrpg/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/lhasa-easyrpg/usage -------------------------------------------------------------------------------- /windows/lhasa-easyrpg/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/lhasa-easyrpg/vcpkg.json -------------------------------------------------------------------------------- /windows/setup_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyRPG/buildscripts/HEAD/windows/setup_env.cmd --------------------------------------------------------------------------------