mirror of
https://github.com/FellippeHeitor/InForm.git
synced 2025-01-15 03:49:56 +00:00
Add setup scripts for macOS and Linux
This commit is contained in:
parent
fc28ae9ca2
commit
61fb770d16
2 changed files with 39 additions and 0 deletions
20
setup_inform_lnx.sh
Normal file
20
setup_inform_lnx.sh
Normal file
|
@ -0,0 +1,20 @@
|
|||
#!/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."
|
||||
echo "Make sure you unpacked all files in QB64's folder, preserving the directory structure and also that you have version 1.1 of QB64 to use InForm."
|
||||
fi
|
||||
else
|
||||
echo "Compilation failed."
|
||||
echo "Make sure you have version 1.1 of QB64 to use InForm."
|
||||
fi
|
||||
echo
|
||||
echo "Thank you for choosing InForm for QB64."
|
19
setup_inform_macos.command
Normal file
19
setup_inform_macos.command
Normal file
|
@ -0,0 +1,19 @@
|
|||
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 version 1.1 of QB64 to use InForm."
|
||||
fi
|
||||
else
|
||||
echo "Compilation failed."
|
||||
echo "Make sure you have version 1.1 of QB64 to use InForm."
|
||||
fi
|
||||
echo
|
||||
echo "Thank you for choosing InForm for QB64."
|
Loading…
Reference in a new issue