Fixed SWIG go for cases when SWIG %import-s another package which is located in a subdirectory.

This commit is contained in:
Misha Seltzer 2015-02-09 18:34:04 +02:00 committed by Misha Seltzer
commit 8da4d20308
9 changed files with 135 additions and 7 deletions

View file

@ -0,0 +1,12 @@
/* File : go_subdir_import_c.i */
%module go_subdir_import_c
%inline %{
class ObjC {
public:
int getInt() const {
return 18;
}
};
%}