Advertisement
YellowAfterlife

Lack of DCE, xml

Oct 30th, 2013
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.89 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="TestNCW" package="TestNCW" version="1.0.0" company="YellowAfterlife" />
  7.    
  8.     <!-- output -->
  9.     <app main="Main" file="TestNCW" path="bin" />
  10.    
  11.     <window background="#f9f9f9" fps="60" />
  12.     <window width="800" height="480" unless="mobile" />
  13.     <window orientation="landscape" vsync="false" antialiasing="0" if="cpp" />
  14.    
  15.     <!-- classpath, haxe libs -->
  16.     <source path="src" />
  17.     <haxelib name="openfl" />
  18.     <haxelib name="ncw" />
  19.    
  20.     <!-- assets -->
  21.     <icon path="assets/openfl.svg" />
  22.     <assets path="assets/img" rename="img" />
  23.    
  24.     <!-- optimize output -->
  25.     <haxeflag name="-dce full" if="js" />
  26.     <haxeflag name="-dce std" unless="js" />
  27.     <haxedef name="dump-dependencies" />
  28. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement