- enable building DLLs on Windows (#1861)

* - enable building DLLs on Windows

* - export.h and test.h are now auto-generated by CMake
This commit is contained in:
Paolo Tosco
2018-05-16 07:42:41 +01:00
committed by Greg Landrum
parent c8ad225657
commit c08ea49bda
507 changed files with 4308 additions and 6863 deletions

View File

@@ -645,13 +645,13 @@ std::map<T, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
}
return res;
}
template std::map<std::string, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
template RDKIT_GRAPHMOL_EXPORT std::map<std::string, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
const ROMol &mol, std::string (*query)(const ROMol &, const Atom *),
bool sanitizeFrags, const std::vector<std::string> *, bool);
template std::map<int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
template RDKIT_GRAPHMOL_EXPORT std::map<int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
const ROMol &mol, int (*query)(const ROMol &, const Atom *),
bool sanitizeFrags, const std::vector<int> *, bool);
template std::map<unsigned int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
template RDKIT_GRAPHMOL_EXPORT std::map<unsigned int, boost::shared_ptr<ROMol>> getMolFragsWithQuery(
const ROMol &mol, unsigned int (*query)(const ROMol &, const Atom *),
bool sanitizeFrags, const std::vector<unsigned int> *, bool);