mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* RDStreams now installed properly * skip Wrap directories if RDK_BUILD_PYTHON_WRAPPERS is not set Fixes #2516
17 lines
427 B
CMake
17 lines
427 B
CMake
|
|
add_definitions(-DRDKIT_CHEMICALFEATURES_BUILD)
|
|
rdkit_library(ChemicalFeatures FreeChemicalFeature.cpp
|
|
LINK_LIBRARIES RDGeneral RDGeometryLib)
|
|
|
|
rdkit_headers(ChemicalFeature.h
|
|
FreeChemicalFeature.h DEST ChemicalFeatures)
|
|
|
|
rdkit_test(testChemicalFeatures testChemicalFeatures.cpp
|
|
LINK_LIBRARIES ChemicalFeatures RDGeneral)
|
|
|
|
if(RDK_BUILD_PYTHON_WRAPPERS)
|
|
add_subdirectory(Wrap)
|
|
endif()
|
|
|
|
|