also, added support for pre-compiled headers since I'm now using a centralized resource for system headers.
8 lines
128 B
C++
8 lines
128 B
C++
#include "py_eval.h"
|
|
|
|
using namespace boost::python;
|
|
|
|
BOOST_PYTHON_MODULE(ledger)
|
|
{
|
|
ledger::initialize_ledger_for_python();
|
|
}
|