public class Source extends Object
<source>
element of the Lime project.xml
format.
The following example sets a custom <sources>
element.
<limeProject>
<sources>
<source>src/main/haxe</source>
<source>foo/bar/baz</source>
</sources>
</limeProject>
public File path
The following example sets a custom <path>
element explicitly.
<limeProject>
<sources>
<source>
<path>foo/bar/baz</path>
</source>
</sources>
</limeProject>
The <sources>
element supports using a simple String
value as shorthand.
<limeProject>
<sources>
<source>foo/bar/baz</source>
</sources>
</limeProject>
Copyright © 2023. All rights reserved.