mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-04 14:57:44 +00:00
12 lines
355 B
CMake
12 lines
355 B
CMake
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)
|