Files
GDevelop/scripts/copyRuntimeFilesToRelease.sh
T
Florian Rival 830b533c6d Updated GDCore which was not up-to-date.
Binaries are now produced in a directory named with the build type and the os short name.
Added all files that are not binaries.
2014-04-01 00:19:58 +02:00

19 lines
803 B
Bash

cd ..
echo
echo "Tool for copying release runtime files to editor"
echo
echo
echo -Deleting all release runtime files.
rm Binaries/Output/Release_Linux/CppPlatform/Extensions/Runtime/*.xgdl -r
rm Binaries/Output/Release_Linux/CppPlatform/Runtime/*
rm Binaries/Output/Release_Linux/Examples/*.gdg.autosave
echo -Copying files from Runtime/bin/release
cp Runtime/bin/release/*.xgdl Binaries/Output/Release_Linux/CppPlatform/Extensions/Runtime
cp Runtime/bin/release/*.a Binaries/Output/Release_Linux/CppPlatform/Extensions/Runtime
cp Runtime/bin/release/libGDCpp.so Binaries/Output/Release_Linux/CppPlatform/Runtime
cp Runtime/bin/release/ExeLinux Binaries/Output/Release_Linux/CppPlatform/Runtime
cp Runtime/bin/release/PlayLinux Binaries/Output/Release_Linux/CppPlatform/Runtime
echo
echo -End of copy