diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2018-10-31 18:47:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-11-01 17:16:37 (GMT) |
commit | 525ff0c3bc1f625756337c2ae724a58ec93ba4d1 (patch) | |
tree | 4df820d742c298da1f29392add49bb09e0451625 /Tests/FindGDAL/Test/main.c | |
parent | 87324b9b6a1f29a25c96149e165e99bebe750ef5 (diff) | |
download | CMake-525ff0c3bc1f625756337c2ae724a58ec93ba4d1.zip CMake-525ff0c3bc1f625756337c2ae724a58ec93ba4d1.tar.gz CMake-525ff0c3bc1f625756337c2ae724a58ec93ba4d1.tar.bz2 |
Tests/FindGDAL: add a test for FindGDAL
Diffstat (limited to 'Tests/FindGDAL/Test/main.c')
-rw-r--r-- | Tests/FindGDAL/Test/main.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/FindGDAL/Test/main.c b/Tests/FindGDAL/Test/main.c new file mode 100644 index 0000000..046eb99 --- /dev/null +++ b/Tests/FindGDAL/Test/main.c @@ -0,0 +1,12 @@ +#include <gdal.h> +#include <stdio.h> +// #include <string.h> + +int main() +{ + printf("Found GDAL version %s, expected version %s\n", GDAL_RELEASE_NAME, + CMAKE_EXPECTED_GDAL_VERSION); + GDALAllRegister(); + // return strcmp(GDAL_RELEASE_NAME, CMAKE_EXPECTED_GDAL_VERSION); + return 0; +} |