[Rdkit-discuss] Standardizer code from Java

2019-12-26 Thread Tim Dudgeon
I'm trying to get my head round using the new standardizer code from Java. Looks like this should be accessible from the RDKFuncs class, but I'm failing at stage 1. Simple example is: package org.exmple; import org.RDKit.RDKFuncs; import org.RDKit.RWMol; public class Simple { static {

Re: [Rdkit-discuss] passing options to javac when building from source

2019-12-26 Thread Paolo Tosco
Hi Tim, Try adding this to your CMake command: -DJAVA_COMPILE="/usr/bin/javac -source 8" Cheers, p. On 26/12/2019 15:22, Tim Dudgeon wrote: When building the Java wrappers from source (the -DRDK_BUILD_SWIG_WRAPPERS=ON option) is possible to specify options to pass on to javac. Specifically

[Rdkit-discuss] passing options to javac when building from source

2019-12-26 Thread Tim Dudgeon
When building the Java wrappers from source (the -DRDK_BUILD_SWIG_WRAPPERS=ON option) is possible to specify options to pass on to javac. Specifically I'm wanting to use the '-source 8' option as most distros now come with java11 (and make it difficult to install an earlier one) but I want to