[pygccxml-development] Re: My log
Brought to you by:
mbaas,
roman_yakovenko
From: Roman Y. <rom...@gm...> - 2006-05-27 20:12:37
|
Another issue, that you will have is absolute paths in generated code. There are 2 ways to solve it: mb =3D module_builder_t( ... ) mb.build_code_creator( ... ) #This will replace all include headers, except boost.python related mb.code_creator.replace_included_headers( ['Ogre.h'] ) #Or another approach: mb.code_creator.user_defined_directories( 'my dir' ) In this case py++ will generate code and will calculate include headers relatively to 'my dir' directory --=20 Roman Yakovenko C++ Python language binding http://www.language-binding.net/ |