mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* add the ring decomposer lib (temporarily?) * simplify makefile * very basics work * backup * basics working * builds and basic tests pass * get this building again * expose the ring families * add tests on the python side * make the pywrapper for this optional * remove some extra bits * cleanup * switch to using RDL as an external project * make sure this still works if we do not use the URF code * remove BUILD_ALWAYS * fix linkage of Java wrapper and cartridge (hopefully) * fix cmake for wrappers (hopefully) * forgot a semicolon * try to force URF lib to build first * improve memory management and interface * fix dependency specifier * make pointer initialization explicit This may not be necessary, but it feels safer. * not pleasing and needs to be cleaned up but it builds * not pleasing and needs to be cleaned up but it builds * cleanup in preparation for merging * cleanup in preparation for merging * switch to rareylab repo * fix updated copyright date * Fix updated copyright date * switch to a specific library tag Co-Authored-By: Florian Flachsenberg <flachsenberg@zbh.uni-hamburg.de> * change in response to review
20 lines
424 B
C++
20 lines
424 B
C++
//
|
|
// Copyright (C) 2017 Greg Landrum
|
|
//
|
|
// @@ All Rights Reserved @@
|
|
// This file is part of the RDKit.
|
|
// The contents are covered by the terms of the BSD license
|
|
// which is included in the file license.txt, found at the root
|
|
// of the RDKit source tree.
|
|
//
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
#include <RDGeneral/RDLog.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
(void)argc;
|
|
(void)argv;
|
|
RDLog::InitLogs();
|
|
}
|