Swig,Cmake和Java

时间:2018-09-26 14:31:26

标签: java cmake swig

我正在尝试使用swig和cmake将c ++库包装为java。假设c ++源代码包含在example.cpp中。我想将其构建到example.dll库和example.jar文件中,以便可以将example.jar添加到Java库路径并编写如下代码:

    public class Test{
   static{


System.loadLibrary("example");
       }
       public static void main(String[] args){
          //call to methods in example.dll here
       }
    }

谁能告诉我该怎么做。 预先感谢!

0 个答案:

没有答案