diff options
| author | Matthew Woehlke <matthew.woehlke@kitware.com> | 2016-05-31 14:51:25 (GMT) |
|---|---|---|
| committer | Brad King <brad.king@kitware.com> | 2016-06-07 12:50:36 (GMT) |
| commit | 95d84369b802473e22bcb662a86175621bba54c6 (patch) | |
| tree | 2ed6f3f24884298ee77fdae27d32f57d6dfc1699 /Tests/JavaExportImport/BuildExport/Foo.java | |
| parent | 5341c0d84af50c2ac5e4041885ab96f8d157ddfe (diff) | |
| download | CMake-95d84369b802473e22bcb662a86175621bba54c6.zip CMake-95d84369b802473e22bcb662a86175621bba54c6.tar.gz CMake-95d84369b802473e22bcb662a86175621bba54c6.tar.bz2 | |
Tests: Add test for exported JARs
Add a unit test to test the new functions to export JAR targets. The
test builds three sub-projects: two that generate and export a JAR (one
does a build-directory-only export, one an install-only export), and a
third that consumes the first two as imported targets.
Diffstat (limited to 'Tests/JavaExportImport/BuildExport/Foo.java')
| -rw-r--r-- | Tests/JavaExportImport/BuildExport/Foo.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/JavaExportImport/BuildExport/Foo.java b/Tests/JavaExportImport/BuildExport/Foo.java new file mode 100644 index 0000000..20815ba --- /dev/null +++ b/Tests/JavaExportImport/BuildExport/Foo.java @@ -0,0 +1,11 @@ +class Foo +{ + public Foo() + { + } + + public void printName() + { + System.out.println("Foo"); + } +} |
