mirror of
https://github.com/FellippeHeitor/InForm.git
synced 2025-01-14 19:49:33 +00:00
19 lines
715 B
Bash
19 lines
715 B
Bash
cd "$(dirname "$0")"
|
|
# InForm for QB64 - Setup script
|
|
if [ -e "./qb64" ]; then
|
|
echo "Compiling InForm..."
|
|
./qb64 -x ./InForm/UiEditor.bas -o ./UiEditor
|
|
|
|
if [ -e "./UiEditor" ]; then
|
|
echo "Running InForm Designer..."
|
|
./UiEditor &
|
|
else
|
|
echo "Compilation failed."
|
|
echo "Make sure you unpacked all files in QB64's folder, preserving the directory structure and also that you have the latest version of QB64 to use InForm."
|
|
fi
|
|
else
|
|
echo "Compilation failed."
|
|
echo "Make sure you unpacked all files in QB64's folder, preserving the directory structure and also that you have the latest version of QB64 to use InForm."
|
|
fi
|
|
echo
|
|
echo "Thank you for choosing InForm for QB64."
|