mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-01 21:19:39 +02:00
13 lines
242 B
Bash
Executable File
13 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
#export GST_PLUGIN_PATH=/Library/Frameworks/GStreamer.framework/Libraries
|
|
#export GST_DEBUG=2
|
|
export LANG=C
|
|
|
|
if [[ `uname` == 'Linux' ]]; then
|
|
./src/mapmap/mapmap
|
|
else #macOS
|
|
./src/mapmap/mapmap.app/Contents/MacOS/mapmap
|
|
fi
|
|
|
|
|