summaryrefslogtreecommitdiffstats
path: root/Tests/FindGDAL/Test/main.c
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2018-10-31 18:47:56 (GMT)
committerBrad King <brad.king@kitware.com>2018-11-01 17:16:37 (GMT)
commit525ff0c3bc1f625756337c2ae724a58ec93ba4d1 (patch)
tree4df820d742c298da1f29392add49bb09e0451625 /Tests/FindGDAL/Test/main.c
parent87324b9b6a1f29a25c96149e165e99bebe750ef5 (diff)
downloadCMake-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.c12
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;
+}