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/main.c | |
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/main.c')
-rw-r--r-- | Tests/JavaExportImport/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/JavaExportImport/main.c b/Tests/JavaExportImport/main.c new file mode 100644 index 0000000..f8b643a --- /dev/null +++ b/Tests/JavaExportImport/main.c @@ -0,0 +1,4 @@ +int main() +{ + return 0; +} |