mirror of https://github.com/jlizier/jidt
Fix bug about conditional targets in build script.
This commit is contained in:
parent
004a7c7f17
commit
6ec79dec55
|
|
@ -55,7 +55,7 @@
|
|||
</javac>
|
||||
|
||||
<!-- Compiling Cpp code -->
|
||||
<antcall target="gpu" if:set="enablegpu">
|
||||
<antcall target="gpu" if:true="${enablegpu}">
|
||||
<param name="DEBUG" value="0"/>
|
||||
</antcall>
|
||||
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
</javac>
|
||||
|
||||
<!-- Compiling Cpp code -->
|
||||
<antcall target="gpu" if:set="enablegpu">
|
||||
<antcall target="gpu" if:true="${enablegpu}">
|
||||
<param name="DEBUG" value="1"/>
|
||||
</antcall>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue