mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* move mol weight and formula calculators to MolOps and refactor them a bit. The descriptors are still there and should remain. * remove other unnecessary dependencies on Descriptors * Update adapter.cpp Co-authored-by: Paolo Tosco <paolo.tosco.mail@gmail.com> --------- Co-authored-by: Paolo Tosco <paolo.tosco.mail@gmail.com>
18 lines
749 B
CMake
18 lines
749 B
CMake
|
|
rdkit_library(StructChecker
|
|
StructChecker.cpp StructCheckerOptions.cpp StructureFlags.cpp Utilites.cpp
|
|
Pattern.cpp Stereo.cpp AtomSymbolMatch.cpp StripSmallFragments.cpp ReCharge.cpp Tautomer.cpp
|
|
LINK_LIBRARIES Depictor SubstructMatch FileParsers ChemTransforms
|
|
GraphMol RDGeneral )
|
|
target_compile_definitions(StructChecker PRIVATE RDKIT_STRUCTCHECKER_BUILD)
|
|
|
|
rdkit_headers(StructChecker.h Utilites.h Pattern.h Stereo.h StripSmallFragments.h ReCharge.h Tautomer.h
|
|
DEST GraphMol/StructChecker)
|
|
|
|
if(RDK_BUILD_PYTHON_WRAPPERS)
|
|
add_subdirectory(Wrap)
|
|
endif()
|
|
|
|
rdkit_test(testStructChecker testStructChecker.cpp
|
|
LINK_LIBRARIES StructChecker SmilesParse )
|