Guest User

Untitled

a guest
Jun 6th, 2016
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.27 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <project>
  3.     <!-- NMML reference: https://gist.github.com/1763850 -->
  4.  
  5.     <!-- metadata, make sure 'package' is at least 3 segments (ie. com.mycompany.myproject) -->
  6.     <meta title="template" package="com.template.template" version="1.0.0" company="Flavien"/>
  7.  
  8.     <!-- output -->
  9.     <app main="template.Main" file="template" path="bin"
  10.         preloader="template.utils.CustomPreloader" if="html5"/>
  11.  
  12.     <app main="template.Main" file="template" path="bin" unless="html5"/>
  13.  
  14.     <!-- Window configuration -->
  15.     <window fps="60" vsync="true" hardware="true"/>
  16.  
  17.     <!-- sources path -->
  18.     <source path="src"/>
  19.  
  20.     <!-- options vars -->
  21.     <set name="openfl-legacy" if="mac"/>
  22.     <set name="openfl-legacy" if="ios"/>
  23.     <set name="openfl-legacy" if="android"/>
  24.  
  25.     <!-- Libraries -->
  26.     <haxelib name="openfl"/>
  27.     <haxelib name="actuate"/>
  28.     <haxelib name="swf"/>
  29.  
  30.     <!-- assets -->
  31.     <assets path="assets/swf" rename="swf"/>
  32.  
  33.     <!-- swf -->
  34.  
  35.     <library path="assets/swf/portraitUi.swf" type="swflite" if="html5" preload="true"/>
  36.     <library path="assets/swf/portraitUi.swf" type="swf" unless="html5" preload="true"/>
  37.  
  38.     <!-- optimize output -->
  39.     <!--<haxeflag name="-dce full" />-->
  40. </project>
Add Comment
Please, Sign In to add comment