Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
clear failure message instead of an exception stacktrace if native li…
…braries are not up-to-date on windows platform

(cherry picked from commit 738e52b9539b806b89b323cc0d9756fb87134d6e)
  • Loading branch information
geometer authored and vasiliy-bout committed Nov 23, 2010
1 parent 0a93377 commit 709a483
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.xml
Expand Up @@ -34,6 +34,11 @@
</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>
Expand Down

0 comments on commit 709a483

Please sign in to comment.