mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
17 lines
432 B
CMake
17 lines
432 B
CMake
|
|
rdkit_library(ReducedGraphs
|
|
ReducedGraphs.cpp
|
|
LINK_LIBRARIES SubstructMatch SmilesParse GraphMol RDGeneral)
|
|
target_compile_definitions(ReducedGraphs PRIVATE RDKIT_REDUCEDGRAPHS_BUILD)
|
|
|
|
rdkit_headers(ReducedGraphs.h
|
|
DEST GraphMol/ReducedGraphs)
|
|
|
|
rdkit_test(testReducedGraphs test1.cpp LINK_LIBRARIES
|
|
ReducedGraphs )
|
|
|
|
if(RDK_BUILD_PYTHON_WRAPPERS)
|
|
add_subdirectory(Wrap)
|
|
endif()
|
|
|