Trying to fix linux compatibility -> libSDLtest.* is now installed
to /usr/local/lib.
This commit is contained in:
parent
2ea1a8a90c
commit
7ffad15a4a
39 changed files with 32 additions and 24 deletions
|
@ -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."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue