diff options
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; +} |