mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
* Added fingerprints to GeneralizedSubstruct search * Small change to fire tests * Edits from code review * Updated swig - newobject not required for GeneralizedSubstruct fingerprint methods * GeneralizedSubstruct only supports unique_ptr in SWIG4.1
16 lines
559 B
CMake
16 lines
559 B
CMake
|
|
rdkit_library(GeneralizedSubstruct
|
|
XQMol.cpp TextIO.cpp
|
|
LINK_LIBRARIES MolEnumerator TautomerQuery SubstructMatch SmilesParse GraphMol Fingerprints)
|
|
target_compile_definitions(GeneralizedSubstruct PRIVATE RDKIT_GENERALIZEDSUBSTRUCT_BUILD)
|
|
|
|
rdkit_headers(XQMol.h DEST GraphMol/GeneralizedSubstruct)
|
|
|
|
if(RDK_USE_BOOST_SERIALIZATION)
|
|
rdkit_catch_test(generalizedSubstructCatch catch_tests.cpp LINK_LIBRARIES GenericGroups FileParsers GeneralizedSubstruct)
|
|
endif()
|
|
|
|
if (RDK_BUILD_PYTHON_WRAPPERS)
|
|
add_subdirectory(Wrap)
|
|
endif ()
|