[pygccxml-development] Header files in generated code
Brought to you by:
mbaas,
roman_yakovenko
From: Allen B. <al...@vr...> - 2006-06-20 13:15:31
|
Summary: How is the list of header files in the generated module code determined? Details: I have my generation script running now, but it is producing code that will not compile. The problem is that the list of header files in the generated code contains file names that I never told the module builder to parse directly. The "extra" files are not meant to be included directly and cause the compiler to error out (they are .inl files that are included by the associated class .hpp file) It seems a little strange to me that the generated code would not just contain the same list of headers that I passed to the module builder originally. Those headers were used to find all the symbols so it would make sense that those are the only headers that would be needed in the generated code. Is there some way that I can override this behavior and tell pyplusplus to only put my original list of headers into the generated code? -Allen |