Menu

SyntaxProject

Brad Lanam

Wiki Home
Syntax

Syntax: project

The project statement defines attributes for the project.

project {
  name <project-name>;
  compiler <default-compiler>;
  version <version-string>;
}

The name of the project is defined with the name attribute. The default compiler is defined with the compiler attribute.

Examples
project {
  name mkctest;
  compiler c;
}

project {
  name mkctestb;
  compiler c  ;
  version 0.3;
}
Attributes

Wiki Home
Syntax


Related

Wiki: Home
Wiki: Syntax
Wiki: SyntaxAttrCompiler
Wiki: SyntaxAttrName
Wiki: SyntaxAttrVersion