1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2025-01-15 03:49:56 +00:00
InForm/setup_inform_macos.command

20 lines
715 B
Text
Raw Normal View History

2016-12-18 19:19:38 +00:00
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."
2021-06-29 13:39:46 +00:00
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."
2016-12-18 19:19:38 +00:00
fi
else
echo "Compilation failed."
2021-06-29 13:39:46 +00:00
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."
2016-12-18 19:19:38 +00:00
fi
echo
2021-06-29 13:39:46 +00:00
echo "Thank you for choosing InForm for QB64."