Files
rdkit/Code/GraphMol/MolTransforms/CMakeLists.txt
Greg Landrum 315939f7ae Fix inversion of stereo with canonicalizeConformer (#7878)
* add test for conformer canonicalization inverting stereo

* Fix problem with canonicalizeConformer inverting stereo

* response to review
cleanup
fix the other tests affected by this change
2024-10-10 09:57:39 -04:00

17 lines
524 B
CMake

rdkit_library(MolTransforms MolTransforms.cpp
LINK_LIBRARIES GraphMol EigenSolvers RDGeneral )
target_compile_definitions(MolTransforms PRIVATE RDKIT_MOLTRANSFORMS_BUILD)
rdkit_headers(MolTransforms.h DEST GraphMol/MolTransforms)
rdkit_test(testMolTransforms test1.cpp
LINK_LIBRARIES MolTransforms
FileParsers SmilesParse )
rdkit_catch_test(molTransformsTestCatch catch_tests.cpp LINK_LIBRARIES MolTransforms FileParsers)
if(RDK_BUILD_PYTHON_WRAPPERS)
add_subdirectory(Wrap)
endif()