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