mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
20 lines
380 B
Bash
Executable File
20 lines
380 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source libs/deploy_common.sh
|
|
DEST=$DEPLOYMENT/windows64
|
|
rm -rf $DEST
|
|
mkdir -p $DEST
|
|
|
|
#### copy exe ####
|
|
cp $BUILD/nekoray.exe $DEST
|
|
|
|
#### deploy qt & DLL runtime ####
|
|
pushd $DEST
|
|
windeployqt nekoray.exe --no-compiler-runtime --no-system-d3d-compiler --no-opengl-sw --verbose 2
|
|
rm -rf translations
|
|
popd
|
|
|
|
#### prepare deployment ####
|
|
cp $BUILD/*.pdb $DEPLOYMENT
|