Files
rdkit/Code/GraphMol/MolHash/CMakeLists.txt
Greg Landrum 68672864c6 improve handling of esters, amides, etc. in the v2 tautomer hash (#8173)
* improve handling of esters, amides, etc. in the v2 tautomer hash

Fixes #8090

* cleanup

* extend that logic to aromatic systems

* documentation in response to review
2025-01-24 16:11:38 +01:00

16 lines
444 B
CMake

rdkit_library(MolHash
hashfunctions.cpp normalize.cpp
LINK_LIBRARIES SubstructMatch Depictor GraphMol)
target_compile_definitions(MolHash PRIVATE RDKIT_MOLHASH_BUILD)
rdkit_headers(MolHash.h nmmolhash.h
DEST GraphMol/MolHash)
rdkit_catch_test(molHashCatchTest catch_tests.cpp LINK_LIBRARIES SmilesParse FileParsers MolHash)
if(RDK_BUILD_PYTHON_WRAPPERS)
add_subdirectory(Wrap)
endif()