aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/LocalStorage/default.build
blob: 5ed183e39899191a0dfb655126ad08d7e7195e06 (plain)
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
<?xml version="1.0"?>
    <project name="OpenSim" default="build" basedir=".">
        <description>nant buildfile for OpenSim</description>
        <property name="debug" value="true" overwrite="false" />
        <target name="clean" description="remove all generated files">
            <delete file="../bin/Db4LocalStorage.dll" failonerror="false" />
        </target>

	<target name="svnupdate" description="updates to latest SVN">
		<exec program="svn">
			<arg value="update" />
		</exec>
	</target>

	<target name="upgrade" description="updates from SVN and then builds" depends="clean,svnupdate,build">
		
	</target>
	
	<target name="build" description="compiles the source code">
	
	<loadfile file="../../VERSION" property="svnver"/>
	<asminfo output="Db4LocalStorage/AssemblyInfo.cs" language="CSharp">
		<imports>
			<import namespace="System" />
			<import namespace="System.Reflection" />
			<import namespace="System.Runtime.InteropServices" />
		</imports>
		<attributes>
			<attribute type="ComVisibleAttribute" value="false" />
			<attribute type="CLSCompliantAttribute" value="false" />
			<attribute type="AssemblyVersionAttribute" value="${svnver}" />
			<attribute type="AssemblyTitleAttribute" value="opensim-localstorage" />
			<attribute type="AssemblyDescriptionAttribute" value="The local storage handler" />
			<attribute type="AssemblyCopyrightAttribute" value="Copyright © OGS development team 2007"/>
		</attributes>
	</asminfo>

	<csc target="library" output="../../bin/Db4LocalStorage.dll" debug="${debug}" verbose="true" warninglevel="4">
			<references basedir="../../bin/" failonempty="true">
				<include name="System.dll" />
				<include name="System.Data.dll" />
				<include name="System.Xml.dll" />
				<include name="libsecondlife.dll" />
				<include name="GridInterfaces.dll" />
				<include name="ServerConsole.dll" />
				<include name="Db4objects.Db4o.dll" />
			</references>
			<sources basedir="Db4LocalStorage/">
				<include name="*.cs" />
			</sources>
		</csc>
	</target>
</project>