diff options
author | Marvin W <git@larma.de> | 2021-03-21 12:41:36 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2021-03-21 12:41:36 +0100 |
commit | e6a933ad307116952d3202c36d0a8d6e7f4b0946 (patch) | |
tree | 289e49270052aa0ce68112b7698c28ad033512af /cmake/FindGstApp.cmake | |
parent | 8a95f9dd1dcc3e9038f0ef48d8ec10692fe08a4e (diff) | |
download | dino-e6a933ad307116952d3202c36d0a8d6e7f4b0946.tar.gz dino-e6a933ad307116952d3202c36d0a8d6e7f4b0946.zip |
Add gstreamer .cmake instructions
Diffstat (limited to 'cmake/FindGstApp.cmake')
-rw-r--r-- | cmake/FindGstApp.cmake | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cmake/FindGstApp.cmake b/cmake/FindGstApp.cmake new file mode 100644 index 00000000..834b8e8e --- /dev/null +++ b/cmake/FindGstApp.cmake @@ -0,0 +1,14 @@ +include(PkgConfigWithFallback) +find_pkg_config_with_fallback(GstApp + PKG_CONFIG_NAME gstreamer-app-1.0 + LIB_NAMES gstapp + LIB_DIR_HINTS gstreamer-1.0 + INCLUDE_NAMES gst/app/app.h + INCLUDE_DIR_SUFFIXES gstreamer-1.0 gstreamer-1.0/include gstreamer-app-1.0 gstreamer-app-1.0/include + DEPENDS Gst +) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(GstApp + REQUIRED_VARS GstApp_LIBRARY + VERSION_VAR GstApp_VERSION) |