mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-30 18:29:37 -06:00
Arguments are added to the dependencies list, and to the "--module-path" passed to javac, which is only generated for adequate JDK versions.
14 lines
128 B
Java
14 lines
128 B
Java
package org.foo;
|
|
|
|
public class Foo
|
|
{
|
|
public Foo()
|
|
{
|
|
}
|
|
|
|
public void printName()
|
|
{
|
|
System.out.println("Foo");
|
|
}
|
|
}
|