1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

Merge branch 'blandger-master' into library

This commit is contained in:
Nikolay Pultsin 2010-11-20 06:21:30 +00:00
commit 6483c0c07a
2 changed files with 9 additions and 7 deletions

View file

@ -7,7 +7,9 @@ Prerequisites:
2. Android NDK >= r4b
3. Apache Ant >= 1.7.1
3. Apache Ant >= 1.7.0
4. (Windows-only) Cygwin >= 1.7
To build:

View file

@ -19,21 +19,21 @@
<setup />
<target name="init" description="Initialization...">
<condition property="Ant17isOnline">
<and>
<antversion property="ant.version" atleast="1.7.0"/>
</and>
</condition>
<fail message="ANT with version at least 1.7 should be present !!! Update your local '${ant.version}' first.">
<condition>
<not>
<isset property="Ant17isOnline"/>
<antversion property="ant.version" atleast="1.7.0"/>
</not>
</condition>
</fail>
</target>
<target name="native" unless="native.lib.is.built">
<fail message="Native libraries are not up-to-date. Please run ndk-build manually.">
<condition>
<os family="windows" />
</condition>
</fail>
<echo message="Try to build 'libDeflatingDecompressor.so', 'libLineBreak.so'...."/>
<exec executable="${ndk.dir}/ndk-build" />
</target>