summaryrefslogtreecommitdiffstats
path: root/src/cmake/modules/FindTIFF.cmake
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2015-10-03 06:32:00 (GMT)
committerTony Theodore <tonyt@logyst.com>2015-10-03 06:32:00 (GMT)
commita0ae5124246cfad9fc234f82248783d665c0e9dc (patch)
tree01bfde7902df9dcea3a17cc0488f8926ef901b99 /src/cmake/modules/FindTIFF.cmake
parent8a2cbf2c289b46e2f3458d895f021ea79ac04d37 (diff)
downloadmxe-a0ae5124246cfad9fc234f82248783d665c0e9dc.zip
mxe-a0ae5124246cfad9fc234f82248783d665c0e9dc.tar.gz
mxe-a0ae5124246cfad9fc234f82248783d665c0e9dc.tar.bz2
move cmake modules to src/cmake/modules
Diffstat (limited to 'src/cmake/modules/FindTIFF.cmake')
-rw-r--r--src/cmake/modules/FindTIFF.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cmake/modules/FindTIFF.cmake b/src/cmake/modules/FindTIFF.cmake
new file mode 100644
index 0000000..08602dd
--- /dev/null
+++ b/src/cmake/modules/FindTIFF.cmake
@@ -0,0 +1,13 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+if(NOT PKG_CONFIG_FOUND)
+ find_package(PkgConfig REQUIRED)
+endif()
+
+pkg_check_modules(TIFF libtiff-4)
+
+# for backward compatiblity
+set(TIFF_LIBRARY ${TIFF_LIBRARIES})
+set(TIFF_INCLUDE_DIR ${TIFF_INCLUDE_DIRS})
+set(TIFF_VERSION_STRING ${TIFF_VERSION})