mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Changed the core build file to run clean before building each time, which is necessary when switching between debug and optimized versions.
git-svn-id: https://zxing.googlecode.com/svn/trunk@466 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
d713f52437
commit
72dfe0c28f
|
@ -57,13 +57,13 @@
|
|||
</jar>
|
||||
</target>
|
||||
|
||||
<target name="build">
|
||||
<target name="build" depends="clean">
|
||||
<antcall target="compile">
|
||||
<param name="generate-debug" value="true"/>
|
||||
</antcall>
|
||||
</target>
|
||||
|
||||
<target name="build-no-debug">
|
||||
<target name="build-no-debug" depends="clean">
|
||||
<antcall target="compile">
|
||||
<param name="generate-debug" value="false"/>
|
||||
</antcall>
|
||||
|
|
Loading…
Reference in a new issue