mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-12 20:18:00 +01:00
20 lines
645 B
XML
20 lines
645 B
XML
|
<project>
|
||
|
<!-- Overriding jar.libs.dir is broken from some SDK version onwards
|
||
|
and seems like it won't be fixed:
|
||
|
https://code.google.com/p/android/issues/detail?id=33194
|
||
|
|
||
|
This workaround is from:
|
||
|
http://stackoverflow.com/questions/11637852
|
||
|
-->
|
||
|
<property file="localgen.properties" />
|
||
|
<target name="-pre-compile">
|
||
|
<path id="project.all.jars.path">
|
||
|
<path path="${toString:project.all.jars.path}"/>
|
||
|
<fileset dir="${jar.libs.dir}">
|
||
|
<include name="*.jar"/>
|
||
|
</fileset>
|
||
|
</path>
|
||
|
</target>
|
||
|
</project>
|
||
|
<!-- vim: set ft=ant et: -->
|