Files
CMake/Tests/JavaModExportImport/BuildExport/Foo.java
Javier Martín 343ee5b9ee UseJava: add INCLUDE_MODULES argument to add_jar
Arguments are added to the dependencies list, and to the "--module-path"
passed to javac, which is only generated for adequate JDK versions.
2025-10-14 18:23:21 +02:00

14 lines
128 B
Java

package org.foo;
public class Foo
{
public Foo()
{
}
public void printName()
{
System.out.println("Foo");
}
}