Installation

Compile the executable

Ensure that a version of CMake is available, as well as RDKit. Boost will also be necessary.:

cd molhash
mkdir build
cd build
cmake ..
make -j6

If CMake cannot automatically find the cheminformatics toolkit or the Boost libraries, it may be necessary to provide more information:

cmake .. -DTARGET=RDKIT -DRDKIT_DIR=D:\Tools\RDKit\msvc\Release\tree -DBOOST_ROOT=D:\Tools\boost -DBOOST_LIBRARYDIR=D:\Tools\boost\boost_1_65_1\lib64-msvc-14.1

If successful, the molhash executable will be generated.