mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
17 lines
502 B
CMake
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()
|
|
|