Skip to content

Instantly share code, notes, and snippets.

@tomspilman
Created April 21, 2014 06:36
Show Gist options
  • Select an option

  • Save tomspilman/11134104 to your computer and use it in GitHub Desktop.

Select an option

Save tomspilman/11134104 to your computer and use it in GitHub Desktop.
<xsl:when test="/Input/Generation/Platform = 'iOS'">
<xsl:call-template name="configuration">
<xsl:with-param name="type"><xsl:value-of select="$project/@Type" /></xsl:with-param>
<xsl:with-param name="debug">true</xsl:with-param>
<xsl:with-param name="config">Debug</xsl:with-param>
<xsl:with-param name="platform">iPhone</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="configuration">
<xsl:with-param name="type"><xsl:value-of select="$project/@Type" /></xsl:with-param>
<xsl:with-param name="debug">false</xsl:with-param>
<xsl:with-param name="config">Release</xsl:with-param>
<xsl:with-param name="platform">iPhone</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="configuration">
<xsl:with-param name="type"><xsl:value-of select="$project/@Type" /></xsl:with-param>
<xsl:with-param name="debug">true</xsl:with-param>
<xsl:with-param name="config">Debug</xsl:with-param>
<xsl:with-param name="platform">iPhoneSimulator</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="configuration">
<xsl:with-param name="type"><xsl:value-of select="$project/@Type" /></xsl:with-param>
<xsl:with-param name="debug">false</xsl:with-param>
<xsl:with-param name="config">Release</xsl:with-param>
<xsl:with-param name="platform">iPhoneSimulator</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="configuration">
<xsl:with-param name="type"><xsl:value-of select="$project/@Type" /></xsl:with-param>
<xsl:with-param name="debug">false</xsl:with-param>
<xsl:with-param name="config">Ad-Hoc</xsl:with-param>
<xsl:with-param name="platform">iPhone</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="configuration">
<xsl:with-param name="type"><xsl:value-of select="$project/@Type" /></xsl:with-param>
<xsl:with-param name="debug">false</xsl:with-param>
<xsl:with-param name="config">AppStore</xsl:with-param>
<xsl:with-param name="platform">iPhone</xsl:with-param>
</xsl:call-template>
</xsl:when>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment