Files
frelay/Script/termuxBuild.sh

11 lines
239 B
Bash
Raw Normal View History

2025-07-06 13:04:05 +08:00
#!/bin/bash
cd ..
xmake f -a x64 -m release --qt="/data/data/com.termux/files/usr/lib" --qt5=y -o build-linux -v
xmake
if [ $? -eq 0 ]; then
echo "xmake command executed successfully"
else
echo "xmake command failed"
exit 1
fi