add missing headers for "make install"

fixes github issue 2
This commit is contained in:
Greg Landrum
2013-02-05 04:57:59 +00:00
parent ea42bf5465
commit c595c29cb2
9 changed files with 30 additions and 7 deletions

View File

@@ -13,6 +13,7 @@ add_subdirectory(Catalogs)
add_subdirectory(GraphMol)
add_subdirectory(Query)
add_subdirectory(Features)
add_subdirectory(DataManip)
if(RDK_BIG_ENDIAN)

View File

@@ -0,0 +1,2 @@
rdkit_headers(Feature.h
DEST Features)

View File

@@ -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()

View File

@@ -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})

View File

@@ -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 )

View File

@@ -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

View File

@@ -0,0 +1,5 @@
rdkit_headers(DrawingToCairo.h
DrawingToSVG.h
MolDrawing.h
DEST GraphMol/MolDrawing)

View File

@@ -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)

View File

@@ -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)