2013-02-12 21:44:23 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# Basic start script for running MultiMC with the libs packaged with it.
|
|
|
|
|
2013-02-13 00:19:13 +05:30
|
|
|
MMC_DIR=$(dirname "$0")
|
2013-02-12 21:44:23 +05:30
|
|
|
cd "${MMC_DIR}"
|
|
|
|
|
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"./lib"
|
2013-02-13 00:19:13 +05:30
|
|
|
export QT_PLUGIN_PATH=$QT_PLUGIN_PATH:"."
|
2013-02-12 21:44:23 +05:30
|
|
|
exec ./bin/MultiMC
|