mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
11 lines
219 B
Text
11 lines
219 B
Text
//CAUTION this one is included in the main cpp file, where the modules are registered into python environment
|
|
|
|
BOOST_PYTHON_MODULE(hello)
|
|
{
|
|
export_world();
|
|
}
|
|
|
|
BOOST_PYTHON_MODULE(upp)
|
|
{
|
|
export_CtrlLib();
|
|
}
|