mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-05 22:04:27 +08:00
* - enable building DLLs on Windows * - export.h and test.h are now auto-generated by CMake
20 lines
714 B
CMake
20 lines
714 B
CMake
if(RDK_BUILD_THREADSAFE_SSS)
|
|
|
|
remove_definitions(-DRDKIT_GRAPHMOL_BUILD)
|
|
add_definitions(-DRDKIT_SUBSTRUCTLIBRARY_BUILD)
|
|
rdkit_library(SubstructLibrary
|
|
SubstructLibrary.cpp
|
|
LINK_LIBRARIES Fingerprints SubstructMatch SmilesParse
|
|
GraphMol RDGeometryLib Catalogs RDGeneral DataStructs )
|
|
|
|
rdkit_headers(SubstructLibrary.h
|
|
DEST GraphMol/SubstructLibrary)
|
|
|
|
add_subdirectory(Wrap)
|
|
|
|
rdkit_test(substructLibraryTest substructLibraryTest.cpp
|
|
LINK_LIBRARIES SubstructLibrary Fingerprints
|
|
SubstructMatch FileParsers SmilesParse GraphMol RDGeometryLib RDGeneral DataStructs
|
|
${Boost_SERIALIZATION_LIBRARY})
|
|
endif(RDK_BUILD_THREADSAFE_SSS)
|