Project Definition

Syntax

Project project
    [Optimizer [On|Off]]
    [EntryPoint [module.]name]
    [LoadModule "modulepath"]...
    [ReferenceProject "projectpath"]...
End Project

Group

Project

Description

A project block describes the members and characteristics of a project.

A '#Language comment in the project defines the language for all modules in the project.

Projects: A project block can only be used in a project.

Parameters Description
project Defines the project's identifier. Other project's can reference symbols in the project using this identifier.

Project Project1
    Optimizer On
    EntryPoint Main
    LoadModule "main.bas"
    LoadModule "module1.bas"
End Project