FellippeHeitor / InForm

A GUI engine and WYSIWYG interface designer for QB64
MIT License
61 stars 15 forks source link

LIBRARY not found in line 13 of T:\qb64\InForm-1.3/InForm\InForm.bi included #121

Open WillianBR opened 9 months ago

WillianBR commented 9 months ago

Hi Folks,

I tried to build InForm from the source on a Windows system. And what should be a simple task, stumbled into a library error.

The command issued and the output is shown below:

T:\qb64\InForm-1.3>..\qb64.exe -x InForm\UiEditor.bas -o UiEditorQB64.exe
QB64 Compiler V2.1

Beginning C++ output from QB64 code...

Beginning C++ output from QB64 code...

LIBRARY not found in line 13 of T:\qb64\InForm-1.3/InForm\InForm.bi included
Caused by (or after):DECLARE LIBRARY "falcon",6
LINE 303:DECLARE LIBRARY "falcon"

I'm using "QB64 Compiler V2.1, Development Build from git 47f5044".

I'm performing the task into a "Microsoft Windows 10 Pro, 10.0.19044, compilação 19044"

The file content is just a declaration:

InForm\InForm\InForm.bi

DECLARE LIBRARY "falcon"
    SUB uprint_extra (BYVAL x&, BYVAL y&, BYVAL chars%&, BYVAL length%&, BYVAL kern&, BYVAL do_render&, txt_width&, BYVAL charpos%&, charcount&, BYVAL colour~&, BYVAL max_width&)
    FUNCTION uprint (BYVAL x&, BYVAL y&, chars$, BYVAL txt_len&, BYVAL colour~&, BYVAL max_width&)
    FUNCTION uprintwidth (chars$, BYVAL txt_len&, BYVAL max_width&)
    FUNCTION uheight& ()
    FUNCTION falcon_uspacing& ALIAS uspacing ()
    FUNCTION uascension& ()
END DECLARE

Do I have to download and install anything else, before do the compiling step?