2002-08-23 Nick Drochak <ndrochak@gol.com>
[mono.git] / mcs / class / I18N / I18N.build
1 <?xml version="1.0"?>
2 <project name="pnetlib I18N" default="build">
3         <property name="debug" value="false"/>
4         <target name="build">
5
6                 <!-- Build the primary I18N.dll library -->
7                 <csc output="../lib/I18N.dll" target="library" debug="${debug}">
8                         <arg value="/nowarn:1595"/>
9                         <arg value="/unsafe"/>
10                         <arg value="/noconfig"/>        <!-- don't reference ms assemblies -->
11                         <arg value="/lib:../lib/"/>
12                         <arg value="/r:corlib.dll"/>
13
14                         <sources>
15                                 <includes name="Common/*.cs"/>
16                         </sources>
17
18                         <!--<resources>
19                                 <file name="../resources/en_US/I18N/I18N.resources"/>
20                         </resources>-->
21
22                 </csc>
23
24                 <!-- Build the I18N.CJK.dll library -->
25                 <csc output="../lib/I18N.CJK.dll" target="library" debug="${debug}">
26                         <arg value="/unsafe"/>
27                         <arg value="/noconfig"/>        <!-- don't reference ms assemblies -->
28                         <arg value="/lib:../lib/"/>
29                         <arg value="/r:I18N.dll"/>
30                         <arg value="/resource:CJK/jis.table"/>
31
32                         <sources>
33                                 <includes name="CJK/*.cs"/>
34                         </sources>
35
36                         <!--<resources>
37                                 <file name="CJK/jis.table"/>
38                         </resources>-->
39
40
41                 </csc>
42
43                 <!-- Build the I18N.MidEast.dll library -->
44                 <csc output="../lib/I18N.MidEast.dll" target="library" debug="${debug}">
45                         <arg value="/unsafe"/>
46                         <arg value="/noconfig"/>        <!-- don't reference ms assemblies -->
47                         <arg value="/lib:../lib/"/>
48                         <arg value="/r:I18N.dll"/>
49
50                         <sources>
51                                 <includes name="MidEast/*.cs"/>
52                         </sources>
53
54                 </csc>
55
56                 <!-- Build the I18N.Other.dll library -->
57                 <csc output="../lib/I18N.Other.dll" target="library" debug="${debug}">
58                         <arg value="/unsafe"/>
59                         <arg value="/noconfig"/>        <!-- don't reference ms assemblies -->
60                         <arg value="/lib:../lib/"/>
61                         <arg value="/r:I18N.dll"/>
62
63                         <sources>
64                                 <includes name="Other/*.cs"/>
65                         </sources>
66
67                 </csc>
68
69                 <!-- Build the I18N.Rare.dll library -->
70                 <csc output="../lib/I18N.Rare.dll" target="library" debug="${debug}">
71                         <arg value="/unsafe"/>
72                         <arg value="/noconfig"/>        <!-- don't reference ms assemblies -->
73                         <arg value="/lib:../lib/"/>
74                         <arg value="/r:I18N.dll"/>
75
76                         <sources>
77                                 <includes name="Rare/*.cs"/>
78                         </sources>
79
80                 </csc>
81
82                 <!-- Build the I18N.West.dll library -->
83                 <csc output="../lib/I18N.West.dll" target="library" debug="${debug}">
84                         <arg value="/unsafe"/>
85                         <arg value="/noconfig"/>        <!-- don't reference ms assemblies -->
86                         <arg value="/lib:../lib/"/>
87                         <arg value="/r:I18N.dll"/>
88
89                         <sources>
90                                 <includes name="West/*.cs"/>
91                         </sources>
92
93                 </csc>
94
95         </target>
96 </project>