File: build.ftree

package info (click to toggle)
foundry 0.0.20130809-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 632 kB
  • ctags: 2,340
  • sloc: cpp: 6,376; yacc: 366; makefile: 192; lex: 184
file content (37 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace foundry {
namespace build {

node project
{
        %include <string>
        std::string name;

	file inputs[];

	configuration configurations[];
};

node configuration
{
	%include <string>
	std::string name;

        file generated[];
};

node file
{
	%include <string>
	std::string name;
	action generator;
};

node action
{
	file inputs[];
};

visitor;

}
}