Advertisement
Guest User

Untitled

a guest
Apr 8th, 2013
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.12 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="HaxePunkTutorial" package="HaxePunkTutorial" version="1.0.0" company="kpulv" />
  7.    
  8.     <!-- output -->
  9.     <app main="Main" file="HaxePunkTutorial" path="bin" />
  10.    
  11.     <window background="#000000" fps="60" />
  12.     <window width="640" height="480" unless="mobile" />
  13.     <window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
  14.    
  15.     <!-- classpath, haxe libs -->
  16.     <source path="src" />
  17.     <haxelib name="nme" />
  18.    
  19.     <!-- assets -->
  20.     <assets path="assets/graphics" rename="gfx" include="*.png|*.jpg" />
  21.     <assets path="assets/font" rename="font" include="*.ttf" />
  22.     <icon path="assets/HaxePunk.svg" />
  23.     <assets path="assets/img" rename="img" />
  24.    
  25.     <!-- DLLs -->
  26.     <ndll name="std" />
  27.     <ndll name="regexp" />
  28.     <ndll name="zlib" />
  29.     <ndll name="nme" haxelib="nme" />
  30.  
  31.     <!-- optimize JS output -->
  32.     <haxeflag name="--dead-code-elimination" if="html5" />
  33.     <haxeflag name="--js-modern" if="html5" />
  34.    
  35. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement