More documenting. Applied patches #1723 and #1724. Someone test nant build.

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@729 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
otakup0pe
2006-12-16 16:51:04 +00:00
parent acc8ff8eb5
commit a2a9e5bf8a
6 changed files with 66 additions and 45 deletions

View File

@@ -44,9 +44,13 @@
<!-- build tasks -->
<target name="example" description="Build a particular example">
<property name="example_name" value="${path::get-file-name(example_path)}" />
<property name="example_buildfile" value="${example_path}/${example_name}.build" />
<echo message="building ${example_name}" />
<csc target="exe" debug="${build.debug}" output="${bin_dir}/${example_name}.exe">
<sources failonempty="true"><include name="${example_path}/*.cs"/></sources>
<nant buildfile="${example_buildfile}" if="${file::exists(example_buildfile)}" />
<csc target="exe" debug="${build.debug}" output="${bin_dir}/${example_name}.exe" unless="${file::exists(example_buildfile)}">
<sources failonempty="true">
<include name="${example_path}/**/*.cs"/>
</sources>
<references basedir="${bin_dir}/">
<include name="libjaspernet.dll"/>
<include name="libsecondlife.dll"/>