This commit is contained in:
Vadim Lopatin 2015-01-28 13:58:57 +03:00
parent 8c2dc182ef
commit ead4391676
2 changed files with 12 additions and 0 deletions

View File

@ -200,6 +200,7 @@
</Folder>
<Folder name="dlangide">
<Folder name="builders">
<File path="src\dlangide\builders\builder.d" />
<File path="src\dlangide\builders\extprocess.d" />
</Folder>
<Folder name="ui">

View File

@ -0,0 +1,11 @@
module dlangide.builders.builder;
import dlangide.workspace.project;
class Builder {
protected Project _project;
@property Project project() { return _project; }
@property void project(Project p) { _project = p; }
}