mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
343 B
Text
15 lines
343 B
Text
//CAUTION this one is included in the main cpp file, where the modules are registered into python environment
|
|
|
|
BOOST_PYTHON_MODULE(hello)
|
|
{
|
|
scope().attr("__doc__") = "hello module";
|
|
export_world();
|
|
}
|
|
|
|
BOOST_PYTHON_MODULE(upp)
|
|
{
|
|
scope().attr("__doc__") = "upp module";
|
|
export_Core();
|
|
export_CtrlCore();
|
|
export_CtrlLib();
|
|
}
|