Skip to content

Commit

Permalink
fixed up build-template.xml, didn't copy x86 natives
Browse files Browse the repository at this point in the history
  • Loading branch information
badlogic committed Jul 6, 2013
1 parent 73ae48b commit 477774f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ zipfileset id="jarfiles" -> the jar files to be merged with the project's classe
<mkdir dir="${libs}/android32" />
<mkdir dir="${libs}/armeabi" />
<mkdir dir="${libs}/armeabi-v7a" />
<mkdir dir="${libs}/x86" />
<mkdir dir="${libs}/linux32" />
<mkdir dir="${libs}/linux64" />
<mkdir dir="${libs}/macosx32" />
Expand All @@ -96,6 +97,11 @@ zipfileset id="jarfiles" -> the jar files to be merged with the project's classe
<include name="**/*.so"/>
</fileset>
</copy>
<copy failonerror="false" todir="${distDir}/x86">
<fileset dir="${libs}/x86">
<include name="**/*.so"/>
</fileset>
</copy>
</target>

<!-- create source and class jar -->
Expand Down Expand Up @@ -125,6 +131,11 @@ zipfileset id="jarfiles" -> the jar files to be merged with the project's classe
<include name="**/*.so"/>
</fileset>
</copy>
<copy failonerror="false" todir="${distDir}/x86">
<fileset dir="${libs}/x86">
<include name="**/*.so"/>
</fileset>
</copy>

<!-- class jar -->
<jar destfile="${distDir}/${jar}.jar">
Expand Down

0 comments on commit 477774f

Please sign in to comment.