#!/bin/bash
# InForm
for QB64
- Setup script
echo "Compiling InForm..."
./qb64 -x ./InForm/UiEditor.bas -o ./UiEditor
./qb64 -x ./InForm/UiEditorPreview.bas -o ./InForm/UiEditorPreview
if [ -e
"./UiEditor" ] &&
[ -e
"./InForm/UiEditorPreview" ];
then echo "Running InForm Designer..."
./UiEditor &
echo "Compilation failed."
echo "Make sure you unpacked all files in QB64's folder, preserving the directory structure and also that you have version 1.2 or later of QB64 to use InForm."
fi
echo "Compilation failed."
echo "Make sure you have version 1.2 or later of QB64 to use InForm."
fi
echo
echo "Thank you for choosing InForm for QB64."