diff options
| -rw-r--r-- | .travis.yml | 1 | ||||
| -rw-r--r-- | build-standalone.xml | 16 |
2 files changed, 14 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 3ca102d..0809a06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ addons: - libtommath-dev - libssl-dev - libcrypto++-dev + - libgcrypt11-dev - gcc-6 - g++-6 language: java 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"> |
