mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
39 lines
1.3 KiB
CMake
39 lines
1.3 KiB
CMake
|
|
remove_definitions(-DRDKIT_GRAPHMOL_BUILD)
|
|
|
|
if(RDK_BUILD_COORDGEN_SUPPORT)
|
|
|
|
if(MSVC AND (NOT RDK_INSTALL_DLLS_MSVC))
|
|
add_definitions(-DSTATIC_COORDGEN)
|
|
else(MSVC AND (NOT RDK_INSTALL_DLLS_MSVC))
|
|
add_definitions(-DIN_COORDGEN)
|
|
endif(MSVC AND (NOT RDK_INSTALL_DLLS_MSVC))
|
|
|
|
set(COORDGEN_LIB coordgen)
|
|
find_package(${COORDGEN_LIB} QUIET)
|
|
endif()
|
|
|
|
rdkit_library(Depictor
|
|
RDDepictor.cpp EmbeddedFrag.cpp DepictUtils.cpp Templates.cpp
|
|
LINK_LIBRARIES ${COORDGEN_LIB} SmilesParse SubstructMatch MolTransforms GraphMol RDGeneral MolAlign)
|
|
target_compile_definitions(Depictor PRIVATE RDKIT_DEPICTOR_BUILD)
|
|
|
|
rdkit_headers(DepictUtils.h
|
|
EmbeddedFrag.h
|
|
RDDepictor.h DEST GraphMol/Depictor)
|
|
|
|
rdkit_test(testDepictor testDepictor.cpp
|
|
LINK_LIBRARIES Depictor ChemTransforms FileParsers SmilesParse MolAlign)
|
|
|
|
FILE(GLOB TEST_OUTPUT_FILES "${CMAKE_CURRENT_SOURCE_DIR}/test_data/*.out.sdf")
|
|
get_directory_property(extra_clean_files ADDITIONAL_MAKE_CLEAN_FILES)
|
|
set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES
|
|
"${extra_clean_files};${TEST_OUTPUT_FILES}")
|
|
|
|
|
|
rdkit_catch_test(depictorCatch catch_tests.cpp LINK_LIBRARIES Depictor SmilesParse FileParsers)
|
|
|
|
|
|
if(RDK_BUILD_PYTHON_WRAPPERS)
|
|
add_subdirectory(Wrap)
|
|
endif() |