1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
remove_definitions(-DRDKIT_GRAPHMOL_BUILD)
add_definitions(-DRDKIT_CHEMTRANSFORMS_BUILD)
rdkit_library(ChemTransforms ChemTransforms.cpp MolFragmenter.cpp LINK_LIBRARIES
SubstructMatch SmilesParse
${RDKit_THREAD_LIBS})
rdkit_headers(ChemTransforms.h
MolFragmenter.h
DEST GraphMol/ChemTransforms)
# there's no Wrap subdirectory on the main trunk (but in "minimal" there is)..
#add_subdirectory(Wrap)
#rdkit_test(testChemTransforms testChemTransforms.cpp
# LINK_LIBRARIES ChemTransforms FileParsers SmilesParse SubstructMatch GraphMol RDGeometryLib RDGeneral )
rdkit_test(testChemTransforms testChemTransforms.cpp
LINK_LIBRARIES ChemTransforms FileParsers SmilesParse SubstructMatch
GraphMol RDGeometryLib RDGeneral ${RDKit_THREAD_LIBS})
|