diff options
author | Brad King <brad.king@kitware.com> | 2021-10-07 13:21:55 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-10-07 13:22:11 (GMT) |
commit | 6e037a04e780f8516dd0a2b5221f2af4e6b20e1d (patch) | |
tree | a0a8bfacef7e4ece039a1b9054d42434f0c87247 /Tests/FindJasper/Test/main.c | |
parent | eb724e938ae82e50f2b45a1d3dd9c4571fc4fec0 (diff) | |
parent | 6e8754c6251bc2f7edfb0d71303e1b85fce93f5e (diff) | |
download | CMake-6e037a04e780f8516dd0a2b5221f2af4e6b20e1d.zip CMake-6e037a04e780f8516dd0a2b5221f2af4e6b20e1d.tar.gz CMake-6e037a04e780f8516dd0a2b5221f2af4e6b20e1d.tar.bz2 |
Merge topic 'FindJasper-imported-target'
6e8754c625 FindJasper: Add IMPORTED target
bdbce845cd FindJasper: Add JASPER_INCLUDE_DIRS result variable
7f8413c309 FindJasper: Modernize documentation layout
524205a7a5 FindJasper: Modernize code layout
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4633
Diffstat (limited to 'Tests/FindJasper/Test/main.c')
-rw-r--r-- | Tests/FindJasper/Test/main.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Tests/FindJasper/Test/main.c b/Tests/FindJasper/Test/main.c new file mode 100644 index 0000000..771344d --- /dev/null +++ b/Tests/FindJasper/Test/main.c @@ -0,0 +1,17 @@ +#include <assert.h> +// clang-format off +#include <stdio.h> +#include <jasper/jasper.h> +// clang-format on + +int main() +{ + /* Without any JPEG file to open, test that the call fails as + expected. This tests that linking worked. */ + jas_init(); + jas_image_t* img = jas_image_create0(); + jas_image_destroy(img); + jas_cleanup(); + + return (JAS_VERSION != CMAKE_EXPECTED_JASPER_VERSION); +} |