aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindGstApp.cmake
blob: 834b8e8e13617e7a2d1670890553c1efad772193 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)