I'm trying to implement a Cloning function for one of my classes I want to
extend to Python. Extending the classes in C++ is easy as I can just override
the Clone function, but it's definitely not working like that for Python.
Here's the code, with unimportant detail ommitted.
template
I have built boost python extension. I have used the
to embed the path to boost python shared library.
This avoids users of my extension from having to set
LD_LIBRARY_PATH when using my extension
python-extension ecflow : [ glob src/*.cpp ]
: $(PYTHON_INSTALL_DIR)
;
In my Jam