Trying to fix linux compatibility -> libSDLtest.* is now installed

to /usr/local/lib.
This commit is contained in:
Markus Kauppila 2011-08-06 21:32:59 +03:00
parent 2ea1a8a90c
commit 7ffad15a4a
39 changed files with 32 additions and 24 deletions

View file

@ -3,4 +3,11 @@
cp src/runner/.libs/runner .
chmod u+x runner
PLATFORM="$(uname)"
if [[ $PLATFORM == "Linux" ]]; then
cp -f src/libSDLtest/.libs/libSDLtest.so.0 /usr/local/lib
elif [[ $PLATFORM == "Darwin" ]]; then
cp -f src/libSDLtest/.libs/libSDLtest.0.dylib /usr/local/lib
fi
echo "Runner installed."