Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 862 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 862 Bytes

JavaCppTemplate

Simple template/example showing how to configure java project with javacpp.

Our 'library' is in MyCppLib.h. In CppLibManual.java there is manual definition of simple interface and in MyCppLibConfig.java we are going to use automatic parser of javacpp. Automatically generated target will be put in pl.krzysg.cppLib.target package.

To build it run:

mvn package -Dmaven.test.skip=true -Dmaven.javadoc.skip=true

And to run example from console run:

mvn -q exec:java

Enjoy!