mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
add_jar: add option GENERATE_NATIVE_HEADERS
This commit is contained in:
15
Tests/JavaNativeHeaders/HelloWorld3.java
Normal file
15
Tests/JavaNativeHeaders/HelloWorld3.java
Normal file
@@ -0,0 +1,15 @@
|
||||
class HelloWorld3
|
||||
{
|
||||
public static void main(String args[])
|
||||
{
|
||||
D d;
|
||||
d = new D();
|
||||
d.printName();
|
||||
|
||||
E e;
|
||||
e = new E();
|
||||
e.printName();
|
||||
|
||||
System.out.println("Hello World!");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user