* did some investigation and it seems that I'll have to build py_runtime as a real dll, not as a module. Once I figured out how to do that (the SWIG stuff seems to build modules by default), I'll see how much further I get ...
Actually, py_runtime *must* be compiled as a real library for all targets. I had the same problem on Linux - test programs couldn't link because they missed a reference to cpp_to_py (I think) which is provided by this library. Actually, autoconf/automake does make a library. I have a few lines in the CMakeList that could serve as a hint for that (planned to fix that later).
* while I'm at it, I'd like to get a dependency graph of our libs/modules done, to include in the engine architecture doc on the Wiki. Might be a nice overview for new developers.
CMake seems to be able to do that. See --graphviz option. Alex. _______________________________________________ Adonthell-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/adonthell-devel
