![JAR search and dependency download from the Maven repository](/logo.png)
dx.gdx-backend-jtransc.0.3.3.source-code.program.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-backend-jtransc Show documentation
Show all versions of gdx-backend-jtransc Show documentation
JVM AOT compiler currently generating JavaScript, Haxe, with initial focus on Kotlin and games.
<?xml version="1.0" encoding="utf-8"?> <project> <meta title="{{ title }}" package="{{ package }}" version="{{ version }}" company="{{ company }}" /> <app main="{{ entryPointClass }}" path="out" file="{{ name }}" /> <app swf-version="11.8" /> <window width="{{ initialWidth }}" height="{{ initialHeight }}" background="#FFFFFF" /> <window fullscreen="false" resizable="true" borderless="false" vsync="false" hardware="true" allow-shaders="true" require-shaders="true" depth-buffer="false" stencil-buffer="true" orientation="{{ orientation }}" highdpi="true" allow-high-dpi="true" /> <window fullscreen="true" if="mobile" /> <window fps="60" unless="js" /> <window fps="0" if="js" /> <window width="0" height="0" if="html5" /> <setenv name="SHOW_CONSOLE" /> <set name="BUILD_DIR" value="export/debug/" if="debug" /> <set name="BUILD_DIR" value="export/release/" if="release" /> {% for flag in haxeExtraFlags %} <haxeflag name="{{ flag.first }}" value="{{ flag.second }}" /> {% end %} {% for define in haxeExtraDefines %} <haxedef name="{{ define }}" /> {% end %} <source path="src" /> <assets path="{{ tempAssetsDir }}" rename="assets" embed="{{ embedResources }}" exclude="*.ttf|*.fla|*.zip|*.swf" type="binary" /> {% if hasIcon %} <icon path="{{ settings.icon }}" /> {% end %} {% if extra.certificate_path %} {% debug "extra.certificate_path: " + extra.certificate_path %} <certificate path="{{ extra.certificate_path }}" {%if extra.certificate_password %} password="{{ extra.certificate_password }}"{% end %} {%if extra.certificate_alias %} alias="{{ extra.certificate_alias }}"{% end %} {%if extra.certificate_password %} alias-password="{{ extra.certificate_password }}"{% end %} /> {% end %} <haxelib name="lime" /> {% for lib in libraries %} {% if lib.version != null %} <haxelib name="{{ lib.name }}" version="{{ lib.version }}" /> {% else %} <haxelib name="{{ lib.name }}" /> {% end %} {% end %} </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy