Skip to content

Commit 19b6a2e

Browse files
unknownunknown
unknown
authored and
unknown
committed
Merge remote-tracking branch 'MetalfanBlackness/master'
2 parents 74fdeba + 2ca1f6e commit 19b6a2e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

build/NAnt.build

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<project name="Mooege-NAnt-build" default="rebuild">
2+
<!-- This build requires NAnt + NAnt Contrib to run -->
3+
<property name="configuration" value="release"/>
4+
<target name="clean" description="Delete all previously compiled binaries.">
5+
<delete>
6+
<fileset>
7+
<include name="../src/mooege/**/bin/**" />
8+
<include name="../src/mooege/**/obj/**" />
9+
<include name="../src/mooege/**/*.suo" />
10+
<include name="../src/mooege/**/*.user" />
11+
</fileset>
12+
</delete>
13+
</target>
14+
15+
<target name="build" description="Build all targets.">
16+
<call target="build.Mooege"/>
17+
</target>
18+
19+
<target name="rebuild" depends="clean, build" />
20+
21+
<target name="build.Mooege">
22+
<msbuild project="../src/mooege/Mooege-VS2010.csproj">
23+
</msbuild>
24+
</target>
25+
26+
</project>

0 commit comments

Comments
 (0)