Executes compilation of provided files.
The task requires a target for each type of compilation specified in the value of a property. The target performs the actual compilation of the file passed to this task.
The target name must follow the syntax:
FileCompile.${mf.cfg}.${fileextn.<file extension>}
For example, taking the following properties:
<property name="mf.cfg" value "singleFileConfig"/> <property name="fileextn.cbl" value "cobol"/>
Would imply the presence of the following target
<target name="FileCompile.singleFileConfig.cobol"> </target>
Attribute | Description | Required |
---|---|---|
fileslist | The list of file names to process, delimited by a comma (",") with or without spaces | Yes |
<executefilecompile filesList="${fileslist}" />