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 )
