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

21 lines
707 B
Bash
Raw Normal View History

2017-03-22 12:41:43 +00:00
#!/bin/bash
# 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:22 +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."
2017-03-22 12:41:43 +00:00
fi
else
echo "Compilation failed."
2021-06-29 13:39:22 +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."
2017-03-22 12:41:43 +00:00
fi
echo
echo "Thank you for choosing InForm for QB64."