23 lines
1.0 KiB
XML
23 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<meta title="<%=meta.title%>" package="<%=meta.pack%>" version="<%=meta.version%>" company="<%=meta.company%>"/>
|
|
<app main="<%=main%>" path="<%=buildDir%>" file="<%=meta.filename%>"/>
|
|
<icon path="<%=icon%>"/>
|
|
<% 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()%>"/><% }); %>
|
|
<% macros.forEach(function(item) { %>
|
|
<haxeflag name="--macro" value="<%=item%>"/><% }); %>
|
|
<% flags.forEach(function(item) { %>
|
|
<haxeflag name="-D" value="<%=item%>"/><% }); %>
|
|
|
|
<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> |