Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <project>
- <!-- NMML reference: https://gist.github.com/1763850 -->
- <!-- metadata, make sure 'package' is at least 3 segments (ie. com.mycompany.myproject) -->
- <meta title="HaxePunkTutorial" package="HaxePunkTutorial" version="1.0.0" company="kpulv" />
- <!-- output -->
- <app main="Main" file="HaxePunkTutorial" path="bin" />
- <window background="#000000" fps="60" />
- <window width="640" height="480" unless="mobile" />
- <window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
- <!-- classpath, haxe libs -->
- <source path="src" />
- <haxelib name="nme" />
- <!-- assets -->
- <assets path="assets/graphics" rename="gfx" include="*.png|*.jpg" />
- <assets path="assets/font" rename="font" include="*.ttf" />
- <icon path="assets/HaxePunk.svg" />
- <assets path="assets/img" rename="img" />
- <!-- DLLs -->
- <ndll name="std" />
- <ndll name="regexp" />
- <ndll name="zlib" />
- <ndll name="nme" haxelib="nme" />
- <!-- optimize JS output -->
- <haxeflag name="--dead-code-elimination" if="html5" />
- <haxeflag name="--js-modern" if="html5" />
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement