aboutsummaryrefslogtreecommitdiff
path: root/build-standalone.xml
diff options
context:
space:
mode:
authorJ08nY2018-10-21 14:39:03 +0200
committerJ08nY2018-10-21 14:39:03 +0200
commit9409b2b99eb54dc48616241bbf83c09d1b99e407 (patch)
tree3047bd9dd11ee83253e55defdc04ae84fcddc84a /build-standalone.xml
parent0f144016e44b7e2071a6934d3a1e785c97ae8729 (diff)
downloadECTester-9409b2b99eb54dc48616241bbf83c09d1b99e407.tar.gz
ECTester-9409b2b99eb54dc48616241bbf83c09d1b99e407.tar.zst
ECTester-9409b2b99eb54dc48616241bbf83c09d1b99e407.zip
Add libgcrypt to travis build.
Diffstat (limited to '')
-rw-r--r--build-standalone.xml16
1 files changed, 13 insertions, 3 deletions
diff --git a/build-standalone.xml b/build-standalone.xml
index 9a47642..62b7813 100644
--- a/build-standalone.xml
+++ b/build-standalone.xml
@@ -106,11 +106,21 @@
<arg value="Makefile.bat"/>
</exec>
</target>
+ <target name="libs-debug">
+ <exec dir="src/cz/crcs/ectester/standalone/libs/jni" failonerror="true" executable="make" osfamily="unix">
+ <arg value="-k"/>
+ <arg value="DEBUG=1"/>
+ </exec>
+ <exec dir="src/cz/crcs/ectester/standalone/libs/jni" failonerror="true" executable="cmd" osfamily="windows">
+ <arg value="/c"/>
+ <arg value="Makefile.bat"/>
+ <env key="DEBUG" value="1"/>
+ </exec>
+ </target>
- <target name="-post-compile" depends="libs-try"/>
+ <target name="-post-compile"/>
<target name="-post-clean">
- <exec dir="src/cz/crcs/ectester/standalone/libs/jni" failonerror="true" executable="make"
- osfamily="unix">
+ <exec dir="src/cz/crcs/ectester/standalone/libs/jni" failonerror="true" executable="make" osfamily="unix">
<arg value="clean"/>
</exec>
<exec dir="src/cz/crcs/ectester/standalone/libs/jni" failonerror="true" executable="cmd" osfamily="windows">