Files
rdkit/Code/GraphMol/ShapeHelpers/CMakeLists.txt
Greg Landrum dc84967df2 A bunch of modernization of the ShapeHelpers code (#8954)
* modernize testShapeHelpers

* a bunch of modernization of the shape helper code
2025-12-15 15:49:00 -05:00

17 lines
502 B
CMake

rdkit_library(ShapeHelpers ShapeEncoder.cpp ShapeUtils.cpp
LINK_LIBRARIES MolTransforms GraphMol RDGeneral)
target_compile_definitions(ShapeHelpers PRIVATE RDKIT_SHAPEHELPERS_BUILD)
rdkit_headers(ShapeEncoder.h
ShapeUtils.h DEST GraphMol/ShapeHelpers)
rdkit_catch_test(testShapeHelpers testShapeHelpers.cpp
LINK_LIBRARIES ShapeHelpers FileParsers MolAlign
SmilesParse FileParsers SubstructMatch )
if(RDK_BUILD_PYTHON_WRAPPERS)
add_subdirectory(Wrap)
endif()