mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
add missing headers for "make install"
fixes github issue 2
This commit is contained in:
@@ -13,6 +13,7 @@ add_subdirectory(Catalogs)
|
||||
|
||||
add_subdirectory(GraphMol)
|
||||
add_subdirectory(Query)
|
||||
add_subdirectory(Features)
|
||||
|
||||
add_subdirectory(DataManip)
|
||||
if(RDK_BIG_ENDIAN)
|
||||
|
||||
2
Code/Features/CMakeLists.txt
Normal file
2
Code/Features/CMakeLists.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
rdkit_headers(Feature.h
|
||||
DEST Features)
|
||||
@@ -56,6 +56,9 @@ add_subdirectory(MolChemicalFeatures)
|
||||
add_subdirectory(ShapeHelpers)
|
||||
add_subdirectory(MolCatalog)
|
||||
|
||||
add_subdirectory(MolDrawing)
|
||||
|
||||
|
||||
if(RDK_BUILD_SLN_SUPPORT AND NOT CMAKE_COMPILER_IS_CLANG)
|
||||
add_subdirectory(SLNParse)
|
||||
endif()
|
||||
|
||||
@@ -1,13 +1,19 @@
|
||||
rdkit_library(ChemTransforms ChemTransforms.cpp MolFragmenter.cpp LINK_LIBRARIES
|
||||
SubstructMatch SmilesParse )
|
||||
SubstructMatch SmilesParse
|
||||
${RDKit_THREAD_LIBS})
|
||||
|
||||
rdkit_headers(ChemTransforms.h DEST GraphMol/ChemTransforms)
|
||||
rdkit_headers(ChemTransforms.h
|
||||
MolFragmenter.h
|
||||
DEST GraphMol/ChemTransforms)
|
||||
|
||||
# there's no Wrap subdirectory on the main trunk (but in "minimal" there is)..
|
||||
#add_subdirectory(Wrap)
|
||||
|
||||
#rdkit_test(testChemTransforms testChemTransforms.cpp
|
||||
# LINK_LIBRARIES ChemTransforms FileParsers SmilesParse SubstructMatch GraphMol RDGeometryLib RDGeneral )
|
||||
rdkit_test(testChemTransforms testChemTransforms.cpp
|
||||
LINK_LIBRARIES ChemTransforms FileParsers SmilesParse SubstructMatch GraphMol RDGeometryLib RDGeneral )
|
||||
LINK_LIBRARIES ChemTransforms_static FileParsers_static SmilesParse_static SubstructMatch_static
|
||||
GraphMol_static RDGeometryLib_static RDGeneral_static ${RDKit_THREAD_LIBS})
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -5,7 +5,9 @@ rdkit_library(Descriptors
|
||||
|
||||
rdkit_headers(Crippen.h Lipinski.h
|
||||
MolDescriptors.h
|
||||
MolSurf.h DEST GraphMol/Descriptors)
|
||||
MolSurf.h
|
||||
ConnectivityDescriptors.h
|
||||
DEST GraphMol/Descriptors)
|
||||
|
||||
rdkit_test(testDescriptors test.cpp
|
||||
LINK_LIBRARIES PartialCharges Descriptors FileParsers SmilesParse Subgraphs SubstructMatch GraphMol DataStructs RDGeneral RDGeometryLib )
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
rdkit_library(Fingerprints
|
||||
Fingerprints.cpp MorganFingerprints.cpp AtomPairs.cpp
|
||||
Fingerprints.cpp MorganFingerprints.cpp AtomPairs.cpp MACCS.cpp
|
||||
LINK_LIBRARIES Subgraphs SubstructMatch SmilesParse GraphMol
|
||||
${RDKit_THREAD_LIBS} )
|
||||
|
||||
rdkit_headers(AtomPairs.h
|
||||
Fingerprints.h
|
||||
MorganFingerprints.h DEST GraphMol/Fingerprints)
|
||||
MorganFingerprints.h
|
||||
DEST GraphMol/Fingerprints)
|
||||
|
||||
rdkit_test(testFingerprints test1.cpp LINK_LIBRARIES
|
||||
Fingerprints FileParsers SubstructMatch SmilesParse
|
||||
|
||||
5
Code/GraphMol/MolDrawing/CMakeLists.txt
Normal file
5
Code/GraphMol/MolDrawing/CMakeLists.txt
Normal file
@@ -0,0 +1,5 @@
|
||||
rdkit_headers(DrawingToCairo.h
|
||||
DrawingToSVG.h
|
||||
MolDrawing.h
|
||||
DEST GraphMol/MolDrawing)
|
||||
|
||||
@@ -3,6 +3,7 @@ rdkit_library(RDBoost Wrap.cpp
|
||||
|
||||
rdkit_headers(Exceptions.h Wrap.h PySequenceHolder.h
|
||||
list_indexing_suite.hpp
|
||||
python_streambuf.h
|
||||
DEST RDBoost)
|
||||
|
||||
add_subdirectory(Wrap)
|
||||
|
||||
@@ -12,7 +12,9 @@ rdkit_headers(BadFileException.h
|
||||
StreamOps.h
|
||||
types.h
|
||||
utils.h
|
||||
versions.h DEST RDGeneral)
|
||||
versions.h
|
||||
LocaleSwitcher.h
|
||||
DEST RDGeneral)
|
||||
if (NOT RDK_INSTALL_INTREE)
|
||||
install(DIRECTORY hash DESTINATION ${RDKit_HdrDir}/RDGeneral/hash
|
||||
PATTERN ".svn" EXCLUDE)
|
||||
|
||||
Reference in New Issue
Block a user