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="Diplomatic Doom" package="com.tametick.dipldoom" version="1.0.0" />
- <set name="PRELOADER_NAME" value="Preloader"/>
- <set name="SWF_VERSION" value="10.3" />
- <!-- output -->
- <app main="Main" file="buskers2" path="bin" />
- <window background="#000000" fps="60" />
- <window width="800" height="480" unless="mobile" />
- <window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
- <!-- classpath, haxe libs -->
- <source path="src" />
- <source path="lib\HaxeFlixel\src" />
- <haxelib name="nme" />
- <haxelib name="actuate" />
- <!-- assets -->
- <icon path="assets/nme.svg" />
- <assets path="assets/sounds" rename="sounds" type="sound" include="*.wav" unless="flash" />
- <assets path="assets/soundsflash" rename="sounds" type="sound" include="*.mp3" if="flash" />
- <assets path="assets" include="*.fgr" type="text" />
- <assets path="assets" include="*.csv" type="text" />
- <assets path="assets" include="*.txt" type="text" />
- <assets path="assets" include="*.oel" type="text" />
- <assets path="assets" include="*.png" type="image" />
- <assets path="assets" include="*.ttf" type="font" />
- <assets path="assets" type="music" include="*.mp3" />
- <!-- 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