mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
remove const specifiers from return values in DataStructs add initial pass at query-query matching for Atoms and Bonds fix and test for sf.net issu 2738320 add Mol.AddRecursiveQuery() method to Mol
21 lines
547 B
Plaintext
21 lines
547 B
Plaintext
project GraphMol/ChemTransforms : : ;
|
|
import os ;
|
|
local RDBASE = [ os.environ RDBASE ] ;
|
|
|
|
|
|
lib ChemTransforms : ChemTransforms.cpp
|
|
..//GraphMol ../../RDGeneral//RDGeneral ../Substruct//Substruct
|
|
: <toolset>msvc:<link>static ;
|
|
install lib-install : ChemTransforms : <location>$(RDBASE)/bin ;
|
|
|
|
exe main : testChemTransforms.cpp ChemTransforms
|
|
../FileParsers//FileParsers ../SmilesParse//SmilesParse
|
|
../Substruct//Substruct ..//GraphMol ../../RDGeneral//RDGeneral ../../Geometry//RDGeometry ;
|
|
|
|
install regrs : main
|
|
: <location>testExecs ;
|
|
|
|
|
|
|
|
|