Skip to content

Commit

Permalink
Update Windows merge.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
jlindgren90 committed Sep 29, 2024
1 parent 36879ba commit d75d5e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions win32/merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ cd /C/aud-win32
for i in `find -type f` ; do
if test -f ${srcdir}/override/$i ; then
cp ${srcdir}/override/$i $i
elif test -f /C/msys64/mingw64/$i ; then
cp /C/msys64/mingw64/$i $i
elif test -f /C/msys64/mingw64/share/qt6/plugins/${i#"./bin/"} ; then
cp /C/msys64/mingw64/share/qt6/plugins/${i#"./bin/"} $i
elif test -f /C/msys64/ucrt64/$i ; then
cp /C/msys64/ucrt64/$i $i
elif test -f /C/msys64/ucrt64/share/qt6/plugins/${i#"./bin/"} ; then
cp /C/msys64/ucrt64/share/qt6/plugins/${i#"./bin/"} $i
elif test -f /C/libs/$i ; then
cp /C/libs/$i $i
elif test -f /C/aud/$i ; then
Expand All @@ -27,7 +27,7 @@ done
for i in `find -name *.dll` ; do strip -s $i ; done
for i in `find -name *.exe` ; do strip -s $i ; done

cd /C/msys64/mingw64/share/qt6/translations
cd /C/msys64/ucrt64/share/qt6/translations
mkdir -p /C/aud-win32/bin/share/qt6/translations
for i in `find . -name '*qt_*' ! -name '*qt_help_*' -o -name '*qtbase_*'` ; do
cp $i /C/aud-win32/bin/share/qt6/translations/$i
Expand Down

0 comments on commit d75d5e7

Please sign in to comment.