aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindGst.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindGst.cmake')
-rw-r--r--cmake/FindGst.cmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/cmake/FindGst.cmake b/cmake/FindGst.cmake
new file mode 100644
index 00000000..942d0129
--- /dev/null
+++ b/cmake/FindGst.cmake
@@ -0,0 +1,12 @@
+include(PkgConfigWithFallback)
+find_pkg_config_with_fallback(Gst
+ PKG_CONFIG_NAME gstreamer-1.0
+ LIB_NAMES gstreamer-1.0
+ INCLUDE_NAMES gst/gst.h
+ INCLUDE_DIR_SUFFIXES gstreamer-1.0 gstreamer-1.0/include
+)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(Gst
+ REQUIRED_VARS Gst_LIBRARY
+ VERSION_VAR Gst_VERSION)