Add a script to easily grab the needed libraries when building with MSYS2
This commit is contained in:
parent
9c9b2e79ce
commit
00ad620b8f
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [[ ! -x melonDS.exe ]]; then
|
||||
echo "Run this script from the directory you built melonDS."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
mkdir -p dist
|
||||
|
||||
for lib in $(ldd melonDS.exe | grep mingw | sed "s/.*=> //" | sed "s/(.*)//"); do
|
||||
cp "${lib}" dist
|
||||
done
|
||||
|
||||
cp melonDS.exe romlist.bin dist
|
Loading…
Reference in New Issue