Share
 
 

About the Output From Make Application (Visual LISP IDE)

Visual LISP executes the instructions in an application make (PRV) file when building an application.

Note: The Visual LISP IDE is available on Windows only.

Output messages from this process appear in two Visual LISP windows; the Build Output window and the Console window. The Build Output window contains messages relating to any compilation of AutoLISP source code into .fas files. In a successful compile, the output looks like the following:

The compiler messages identify the following items:

  • The name and folder path of the source files being compiled.
  • The functions defined in the source file.

    In the above example, four functions are identified: GP:GETPOINTINPUT, GP:GETDIALOGINPUT, GP:DRAWOUTLINE, and C:GPATH.

  • The name and folder path of the output .fas file.

The Visual LISP Console window displays messages relating to the creation of the application executable, the .vlx file. If the Make Application process succeeds, the Console window displays the folder path and file name of the .vlx, as in the following example:

Was this information helpful?