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."
|
2018-06-11 23:13:26 +00:00
|
|
|
echo "Make sure you unpacked all files in QB64's folder, preserving the directory structure and also that you have version 1.2 of QB64 to use InForm."
|
2016-12-18 19:19:38 +00:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Compilation failed."
|
2018-06-11 23:13:26 +00:00
|
|
|
echo "Make sure you have version 1.2 of QB64 to use InForm."
|
2016-12-18 19:19:38 +00:00
|
|
|
fi
|
|
|
|
echo
|
|
|
|
echo "Thank you for choosing InForm for QB64."
|