2024-03-05 13:20:29 +01:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
2024-03-24 02:15:57 +01:00
|
|
|
# SPDX-FileCopyrightText: 2019 yuzu Emulator Project
|
2024-04-02 19:12:27 +02:00
|
|
|
# SPDX-FileCopyrightText: 2024 suyu Emulator Project
|
2024-03-05 13:20:29 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2024-03-08 10:06:48 +01:00
|
|
|
#cd /suyu
|
2024-03-05 13:20:29 +01:00
|
|
|
|
|
|
|
ccache -sv
|
|
|
|
|
2024-04-02 19:12:27 +02:00
|
|
|
rm -rf build
|
2024-03-05 13:20:29 +01:00
|
|
|
mkdir -p build && cd build
|
2024-04-02 19:12:27 +02:00
|
|
|
/usr/bin/x86_64-w64-mingw32-cmake .. \
|
2024-03-05 13:20:29 +01:00
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DDISPLAY_VERSION="$1" \
|
2024-04-02 19:12:27 +02:00
|
|
|
-DDYNARMIC_USE_PRECOMPILED_HEADERS=OFF \
|
|
|
|
-DSUYU_USE_PRECOMPILED_HEADERS=OFF \
|
|
|
|
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=OFF \
|
2024-04-06 19:34:23 +02:00
|
|
|
-DUSE_DISCORD_PRESENCE=ON \
|
2024-03-05 13:20:29 +01:00
|
|
|
-DENABLE_QT_TRANSLATION=ON \
|
|
|
|
-DUSE_CCACHE=ON \
|
2024-03-08 10:06:48 +01:00
|
|
|
-DSUYU_USE_BUNDLED_SDL2=OFF \
|
|
|
|
-DSUYU_USE_EXTERNAL_SDL2=OFF \
|
|
|
|
-DSUYU_TESTS=OFF \
|
2024-03-05 13:20:29 +01:00
|
|
|
-GNinja
|
2024-03-08 10:06:48 +01:00
|
|
|
ninja suyu suyu-cmd
|
2024-03-05 13:20:29 +01:00
|
|
|
|
|
|
|
ccache -sv
|
|
|
|
|
|
|
|
echo "Tests skipped"
|
|
|
|
#ctest -VV -C Release
|
|
|
|
|
|
|
|
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
|
|
|
|
#fallback to qt
|
|
|
|
QT_PLUGINS_PATH='/usr/x86_64-w64-mingw32/lib/qt/plugins'
|
|
|
|
fi
|
|
|
|
|
2024-03-08 10:06:48 +01:00
|
|
|
find build/ -name "suyu*.exe" -exec cp {} 'package' \;
|
2024-03-05 13:20:29 +01:00
|
|
|
|
|
|
|
# copy Qt plugins
|
|
|
|
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
|
|
|
|
# we need to process pdb here, however, cv2pdb
|
|
|
|
# does not work here, so we just simply strip all the debug symbols
|
|
|
|
x86_64-w64-mingw32-strip "${i}"
|
|
|
|
done
|
|
|
|
|
|
|
|
python3 .ci/scripts/windows/scan_dll.py package/*.exe package/imageformats/*.dll "package/"
|
|
|
|
|
|
|
|
# copy FFmpeg libraries
|
|
|
|
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/ ';'
|
|
|
|
|
2024-03-08 10:06:48 +01:00
|
|
|
# copy libraries from suyu.exe path
|
2024-03-05 13:20:29 +01:00
|
|
|
find "$(pwd)/build/bin/" -type f -regex ".*\.dll" -exec cp -v {} package/ ';'
|