sigar/bindings/dotnet/examples/default.build

37 lines
967 B
Plaintext
Raw Normal View History

2004-07-22 05:16:33 +08:00
<?xml version="1.0"?>
<!-- NAnt build file: http://sourceforge.net/projects/nant/ -->
<project name="SigarSharpExamples" default="build">
<property name="debug" value="true"/>
<property name="build.dir" overwrite="false" value="bin"/>
<property name="sigarsharp" overwrite="false"
value="../../bindings/csharp/build/SigarSharp.dll"/>
<target name="clean">
<delete dir="${build.dir}"/>
</target>
<target name="build-exe">
<csc target="exe" output="${build.dir}/${name}.exe" debug="${debug}">
<sources>
<includes name="${name}.cs"/>
</sources>
<references>
<includes name="${sigarsharp}"/>
</references>
</csc>
</target>
<target name="build" description="Build C# Sigar examples">
<mkdir dir="${build.dir}"/>
2004-09-18 06:52:32 +08:00
<foreach item="String" in="Free,CpuInfo,Df,Ifconfig"
2004-07-22 05:16:33 +08:00
delim="," property="name">
<call target="build-exe"/>
</foreach>
</target>
</project>