| | #!/bin/bash -ex |
| |
|
| | |
| | |
| |
|
| | set -e |
| |
|
| | |
| |
|
| | ccache -sv |
| |
|
| | mkdir -p build && cd build |
| | cmake .. \ |
| | -DCMAKE_BUILD_TYPE=Release \ |
| | -DCMAKE_TOOLCHAIN_FILE="${PWD}/../CMakeModules/MinGWCross.cmake" \ |
| | -DDISPLAY_VERSION="$1" \ |
| | -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON \ |
| | -DENABLE_QT_TRANSLATION=ON \ |
| | -DUSE_CCACHE=ON \ |
| | -DYUZU_USE_BUNDLED_SDL2=OFF \ |
| | -DYUZU_USE_EXTERNAL_SDL2=OFF \ |
| | -DYUZU_TESTS=OFF \ |
| | -GNinja |
| | ninja yuzu yuzu-cmd |
| |
|
| | ccache -sv |
| |
|
| | echo "Tests skipped" |
| | |
| |
|
| | echo 'Prepare binaries...' |
| | cd .. |
| | mkdir package |
| |
|
| | if [ -d "/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/" ]; then |
| | QT_PLUGINS_PATH='/usr/x86_64-w64-mingw32/lib/qt5/plugins' |
| | else |
| | |
| | QT_PLUGINS_PATH='/usr/x86_64-w64-mingw32/lib/qt/plugins' |
| | fi |
| |
|
| | find build/ -name "yuzu*.exe" -exec cp {} 'package' \; |
| |
|
| | |
| | mkdir package/platforms |
| | cp -v "${QT_PLUGINS_PATH}/platforms/qwindows.dll" package/platforms/ |
| | cp -rv "${QT_PLUGINS_PATH}/mediaservice/" package/ |
| | cp -rv "${QT_PLUGINS_PATH}/imageformats/" package/ |
| | cp -rv "${QT_PLUGINS_PATH}/styles/" package/ |
| | rm -f package/mediaservice/*d.dll |
| |
|
| | for i in package/*.exe; do |
| | |
| | |
| | x86_64-w64-mingw32-strip "${i}" |
| | done |
| |
|
| | python3 .ci/scripts/windows/scan_dll.py package/*.exe package/imageformats/*.dll "package/" |
| |
|
| | |
| | EXTERNALS_PATH="$(pwd)/build/externals" |
| | FFMPEG_DLL_PATH="$(find "${EXTERNALS_PATH}" -maxdepth 1 -type d | grep 'ffmpeg-')/bin" |
| | find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -nv {} package/ ';' |
| |
|
| | |
| | find "$(pwd)/build/bin/" -type f -regex ".*\.dll" -exec cp -v {} package/ ';' |
| |
|