Skip to content

Commit

Permalink
Add Headless dependency to build for KTX
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Ski committed Jan 20, 2015
1 parent 1766476 commit a7e7f10
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.xml
Expand Up @@ -131,10 +131,11 @@

<!-- build the extensions -->
<!-- gdx tools -->
<target name="gdx-tools" depends="gdx-core,gdx-backend-lwjgl,gdx-backend-lwjgl">
<target name="gdx-tools" depends="gdx-core,gdx-backend-lwjgl,gdx-backend-lwjgl,gdx-backend-headless">
<path id="classpath">
<pathelement location="${distDir}/gdx.jar"/>
<pathelement location="${distDir}/gdx-backend-lwjgl.jar"/>
<pathelement location="${distDir}/gdx-backend-headless.jar"/>
</path>
<fileset id="resourcefiles" dir="extensions/gdx-tools/assets"/>
<ant antfile="../../build-template.xml" dir="extensions/gdx-tools">
Expand Down
1 change: 1 addition & 0 deletions extensions/gdx-tools/assembly.xml
Expand Up @@ -15,6 +15,7 @@
<scope>runtime</scope>
<excludes>
<exclude>com.badlogicgames.gdx:gdx-backend-lwjgl</exclude>
<exclude>com.badlogicgames.gdx:gdx-backend-headless</exclude>
</excludes>
</dependencySet>
<dependencySet>
Expand Down
6 changes: 6 additions & 0 deletions extensions/gdx-tools/pom.xml
Expand Up @@ -22,6 +22,12 @@
<artifactId>gdx-backend-lwjgl</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gdx-backend-headless</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>de.matthiasmann</groupId>
Expand Down

0 comments on commit a7e7f10

Please sign in to comment.