-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.childbrowser.xml
56 lines (50 loc) · 2.76 KB
/
build.childbrowser.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="childbrowser" default="" basedir=".">
<description>targets specific to childbrowser</description>
<property name="buildfile.childbrowser.loaded" value="true"/>
<target name="update-childbrowser" depends="load-mainconf">
<svn><arg line="update ${svn.childbrowser.dir}"/></svn>
</target>
<target name="junior6">
<fail if="mainconf.loaded" message="this target must be used before 'load-mainconf' target"/>
<updateproperty name="replace.file" value="childbrowser/ja.sixth.replace"/>
<updateproperty name="charcheck.deny" value="${charcheck.deny.kanji.junior6}"/>
<updateproperty name="langpack.locale" value="ja-JP-junior6"/>
</target>
<target name="junior5">
<fail if="mainconf.loaded" message="this target must be used before 'load-mainconf' target"/>
<updateproperty name="replace.file" value="childbrowser/ja.fifth.replace"/>
<updateproperty name="charcheck.deny" value="${charcheck.deny.kanji.junior5}"/>
<updateproperty name="langpack.locale" value="ja-JP-junior5"/>
</target>
<target name="junior4">
<fail if="mainconf.loaded" message="this target must be used before 'load-mainconf' target"/>
<updateproperty name="replace.file" value="childbrowser/ja.fourth.replace"/>
<updateproperty name="charcheck.deny" value="${charcheck.deny.kanji.junior4}"/>
<updateproperty name="langpack.locale" value="ja-JP-junior4"/>
</target>
<target name="junior3">
<fail if="mainconf.loaded" message="this target must be used before 'load-mainconf' target"/>
<updateproperty name="replace.file" value="childbrowser/ja.third.replace"/>
<updateproperty name="charcheck.deny" value="${charcheck.deny.kanji.junior3}"/>
<updateproperty name="langpack.locale" value="ja-JP-junior3"/>
</target>
<target name="junior2">
<fail if="mainconf.loaded" message="this target must be used before 'load-mainconf' target"/>
<updateproperty name="replace.file" value="childbrowser/ja.second.replace"/>
<updateproperty name="charcheck.deny" value="${charcheck.deny.kanji.junior2}"/>
<updateproperty name="langpack.locale" value="ja-JP-junior2"/>
</target>
<target name="junior1">
<fail if="mainconf.loaded" message="this target must be used before 'load-mainconf' target"/>
<updateproperty name="replace.file" value="childbrowser/ja.first.replace"/>
<updateproperty name="charcheck.deny" value="${charcheck.deny.kanji.junior1}"/>
<updateproperty name="langpack.locale" value="ja-JP-junior1"/>
</target>
<target name="hiragana">
<fail if="mainconf.loaded" message="this target must be used before 'load-mainconf' target"/>
<updateproperty name="replace.file" value="childbrowser/ja.hiragana.replace"/>
<updateproperty name="charcheck.deny" value="${charcheck.deny.kanji.hiragana}"/>
<updateproperty name="langpack.locale" value="ja-JP-hiragana"/>
</target>
</project>