-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.properties
executable file
·62 lines (38 loc) · 1.65 KB
/
build.properties
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# =============================================================================
# Properties for the Ant build file (build.xml)
# =============================================================================
# the Kitten program that must be compiled in the examples
kitten.example = TRY
# the directory where the Kitten program to compile is stored
kitten.example.dir = testcases
# input folderjars-to-analyze.fulldir
build.in.folder = src
# lib folder
build.lib.folder = lib
# output folder
build.out.folder = ant-build
# the user triggering the build process
user.name = ant
# definitions for the lexical analyzer
# the name of the package of the lexical analyzer
lexical.package = lexical
# the name of the lexical analyzer generator source
lexical.generator.source = lexical/Generator.java
# the name of the lexical analyzer generator class
lexical.generator = lexical.Generator
# definitions for the syntactical analyzer
# the name of the package of the syntactical analyzer
syntactical.package = syntactical
# the name of the syntactical analyzer generator source
syntactical.generator.source = syntactical/Generator.java
# the name of the syntactical analyzer generator class
syntactical.generator = syntactical.Generator
# definitions for the semantical analyzer
# the name of the package of the semantical analyzer
semantical.package = semantical
# definitions for the Kitten bytecode generator
# the name of the package of the Kitten bytecode generator
kitten.bytecode.generator.package = translation
# definitions for the Java bytecode generator
# the name of the package of the code generator
java.bytecode.generator.package = javaBytecodeGenerator