mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 18:42:07 +08:00
57de41eae5
* qt text window * auto size * real text * this is cleaner * fix android build * exit on pc * tici fixes old-commit-hash: 68ba1649b91984c106491cf1894c3f44f21a34df
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
|