How to create an executable from a Java class using automake, i.e. Autotools?

I am working on autotools. I have some C ++ files that use the java class. I can create an executable for my project using autotools, but I cannot create an executable for the java class that I included in the project. My project executes this Java executable as a command.

+4
source share
1 answer

I would generate a jar file from java classes and set it to DATADIR.

0
source

Source: https://habr.com/ru/post/1438617/


All Articles