1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
if(NOT RDK_USE_BOOST_SERIALIZATION)
message("== Making TautomerQuery without boost Serialization support")
endif()
rdkit_library(TautomerQuery
TautomerQuery.cpp
LINK_LIBRARIES GraphMol RDGeneral MolStandardize)
target_compile_definitions(TautomerQuery PRIVATE RDKIT_TAUTOMERQUERY_BUILD)
rdkit_headers(TautomerQuery.h
DEST GraphMol/TautomerQuery)
if(RDK_BUILD_PYTHON_WRAPPERS)
add_subdirectory(Wrap)
endif()
rdkit_catch_test(tautomerQueryTestCatch catch_tests.cpp LINK_LIBRARIES TautomerQuery )
|