18 lines
768 B
XML
18 lines
768 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<meta title="<%-meta.title%>" package="<%-meta.pack%>" company="<%-meta.company%>"/>
|
|
<app main="<%-main%>" path="<%-buildDir%>" file="<%-name%>"/>
|
|
<% sources.forEach(function(item) { %>
|
|
<source path="<%-item%>"/><% }); %>
|
|
<% assets.forEach(function(item) { %>
|
|
<assets path="<%-item%>" rename="<%-item.split('/').pop()%>" include="*"/><% }); %>
|
|
<% libs.forEach(function(item) { %>
|
|
<haxelib name="<%-item.name%>" version="<%-item.version.split('@').shift()%>"/><% }); %>
|
|
|
|
<window fps="30"/>
|
|
<window width="1024" height="768" unless="html5"/>
|
|
|
|
<haxeflag name="-D" value="swf-gpu"/>
|
|
<haxeflag name="-D" value="native-trace"/>
|
|
<haxeflag name="-dce" value="no"/>
|
|
</project> |