mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-01 13:09:36 +02:00
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
unamestr=$(uname)
|
|
cd $(dirname $0)
|
|
cd src/mapmap
|
|
|
|
if [[ $unamestr == "Darwin" ]]; then
|
|
otool -L mapmap.app/Contents/MacOS/mapmap
|
|
elif [[ $unamestr == "Linux" ]]; then
|
|
ldd mapmap
|
|
fi
|