mirror of
https://git.citron-emu.org/citron/emulator
synced 2025-12-19 02:33:32 +00:00
Added support for building AppImages using Torzu's AppImageBuilder. Signed-off-by: Boss.sfc <boss.sfc@citron-emu.org>
12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#! /bin/bash
|
|
|
|
cd "$APPDIR"
|
|
|
|
if [ -d /usr/lib/$(uname -m)-linux-gnu/qt5 ] || [ -d /usr/lib/qt ]; then
|
|
# System-wide Qt5
|
|
exec ./citron.sh "$@"
|
|
else
|
|
# Bundled Qt5
|
|
exec ./citron-bqt.sh "$@"
|
|
fi
|