mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-02 17:13:53 +08:00
* qt text window * auto size * real text * this is cleaner * fix android build * exit on pc * tici fixes
9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f /EON ]; then
|
|
export LD_LIBRARY_PATH="/system/lib64:$LD_LIBRARY_PATH"
|
|
exec ./android/text/text "$1"
|
|
else
|
|
exec ./qt/text "$1"
|
|
fi
|