1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
  
     | 
    
      remove_definitions(-DRDKIT_CHEMREACTIONS_BUILD)
rdkit_python_extension(rdChemReactions
                       Enumerate.cpp
                       rdChemReactions.cpp
                       DEST Chem
                       LINK_LIBRARIES
ChemReactions
 FilterCatalog ChemTransforms
Descriptors Fingerprints Subgraphs DataStructs Depictor FileParsers SmilesParse SubstructMatch
GraphMol Catalogs FilterCatalog RDGeneral RDGeometryLib RDBoost )
add_pytest(pyChemReactions
         ${CMAKE_CURRENT_SOURCE_DIR}/testReactionWrapper.py)
add_pytest(pyChemReactionEnumerations
         ${CMAKE_CURRENT_SOURCE_DIR}/testEnumerations.py)
add_pytest(pyChemReactionSanitize
         ${CMAKE_CURRENT_SOURCE_DIR}/testSanitize.py)
 
     |