Is there a plugin for eclipse IDE where I can run my SWIG module. I'm trying to work in Windows, so can anyone tell me any available plugins for working with SWIG inside Eclipse?
Also I need to run C/C++ programs, so an IDE is the best way to work.
I don't want to use Microsoft Visual C++.
SWIG code:
%module test
%{
int fact(int num);
%}
Java code:
class Runme{
public static void main(String argv[])
{
test.fact(100);
}
}