summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2013-04-04 22:24:57 +0200
committerPierre Joye <pierre.php@gmail.com>2013-04-04 22:24:57 +0200
commit0c21e2cfc1391d1ef564f0cfd8bdec02899c3666 (patch)
tree4917bfe0b868f0302057f8372060c2b67361b8da /cmake
parente5b9482db454434cfbcb698b209e9ab881c7c1cb (diff)
downloadlibgd-0c21e2cfc1391d1ef564f0cfd8bdec02899c3666.tar.gz
backport php's gd webp support
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindVPX.cmake51
1 files changed, 51 insertions, 0 deletions
diff --git a/cmake/modules/FindVPX.cmake b/cmake/modules/FindVPX.cmake
new file mode 100644
index 0000000..dfe30fc
--- /dev/null
+++ b/cmake/modules/FindVPX.cmake
@@ -0,0 +1,51 @@
+# - Find the native PNG includes and library
+#
+
+# This module defines
+# VPX_INCLUDE_DIR, where to find png.h, etc.
+# VPX_LIBRARIES, the libraries to link against to use PNG.
+# VPX_DEFINITIONS - You should ADD_DEFINITONS(${PNG_DEFINITIONS}) before compiling code that includes png library files.
+# VPX_FOUND, If false, do not try to use PNG.
+# also defined, but not for general use are
+# VPX_LIBRARY, where to find the PNG library.
+# None of the above will be defined unles zlib can be found.
+# PNG depends on Zlib
+#
+# Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
+# See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
+
+
+INCLUDE(FindZLIB)
+
+SET(VPX_FOUND "NO")
+
+FIND_PATH(VPX_VPX_INCLUDE_DIR vp8cx.h
+/usr/local/include/vpx
+/usr/include/vpx
+)
+
+SET(VPX_NAMES ${VPX_NAMES} vpxmt libvpx)
+FIND_LIBRARY(VPX_LIBRARY
+ NAMES ${VPX_NAMES}
+ PATHS /usr/lib64 /usr/lib /usr/local/lib
+)
+
+IF (VPX_LIBRARY AND VPX_VPX_INCLUDE_DIR)
+ SET(VPX_INCLUDE_DIR ${VPX_VPX_INCLUDE_DIR})
+ SET(VPX_LIBRARIES ${VPX_LIBRARY})
+ SET(VPX_FOUND "YES")
+
+ENDIF (VPX_LIBRARY AND VPX_VPX_INCLUDE_DIR)
+
+IF (VPX_FOUND)
+ IF (NOT VPX_FIND_QUIETLY)
+ MESSAGE(STATUS "Found XPM: ${VPX_LIBRARY}")
+ ENDIF (NOT VPX_FIND_QUIETLY)
+ELSE (VPX_FOUND)
+ IF (VPX_FIND_REQUIRED)
+ MESSAGE(FATAL_ERROR "Could not find XPM library")
+ ENDIF (VPX_FIND_REQUIRED)
+ENDIF (VPX_FOUND)
+
+MARK_AS_ADVANCED(VPX_VPX_INCLUDE_DIR VPX_LIBRARY )
+SET(VPX_LIBRARIES ${VPX_LIBRARY})