added WinRT target to the build file (this will call the metro target with ARM-CPU-Support switched on)

This commit is contained in:
Glatzemann 2012-09-28 09:19:49 +00:00 committed by Konstantin Koch
parent 694b1a6810
commit 94e34228aa
2 changed files with 16398 additions and 16364 deletions

File diff suppressed because it is too large Load Diff

View File

@ -21,6 +21,7 @@
<property name="project.anx.linux" value="false" />
<property name="project.anx.psvita" value="false" />
<property name="project.anx.metro" value="false" />
<property name="project.anx.winrt" value="false" />
<target name="clean" description="Cleans all targets.">
<delete>
@ -81,6 +82,17 @@
<call target="generate_project_files" />
</target>
<target name="winrt">
<property name="project.anx.metro" value="true" />
<property name="project.anx.winrt" value="true" />
<property name="project.anx.platform" value="Windows 8 / Metro / WinRT" />
<property name="build.platform" value="ARM" />
<property name="project.anx.directives" value="${project.anx.directives} WINDOWSMETRO ARM WINRT" />
<call target="generate_project_files" />
</target>
<target name="build">
<echo message="===================================================" />
<echo message="ANX.Framework build script" />