Glatzemann 39dc83d33e added NAnt 0.91 build system to the lib folder
added build folder
added build script for release build of ANX.Framework and all RenderSystems
fixed some issues in projects regarding compiler directives
removed StockShaderCodeGenerator from Pre-Build-Events. Build the Stock shaders using NAnt target build_stock_shaders.
started Wiki documentation for custom build switches (e.g. extended mode)
2011-11-18 11:04:26 +00:00

23 lines
737 B
XML

<?xml version="1.0"?>
<project name="Simple" default="run">
<property name="debug" value="true"/>
<target name="clean" description="remove all generated files">
<delete file="bin/Simple.exe" if="${file::exists('bin/Simple.exe')}" />
<delete file="bin/Simple.pdb" if="${file::exists('bin/Simple.pdb')}" />
</target>
<target name="build" description="compiles the source code">
<mkdir dir="bin" />
<csc target="exe" output="bin/Simple.exe" debug="${debug}">
<sources>
<include name="Simple.cs" />
</sources>
</csc>
</target>
<target name="run" depends="build">
<exec program="bin/Simple.exe" />
</target>
</project>