build: Don't look for packages with pkg-config on Android.

Things like ffmpeg aren't there but were found on the host.
This commit is contained in:
Ryan Pavlik 2020-08-25 17:44:14 -05:00 committed by Jakob Bornecrantz
parent 51d693b66a
commit b7e9c9cc67

View file

@ -42,11 +42,13 @@ find_package(cJSON)
find_package(Systemd)
find_package(OpenGLES COMPONENTS V3)
# @TODO Turn into a find_package LIBUVC file.
pkg_check_modules(LIBUVC libuvc)
if(NOT ANDROID)
# @TODO Turn into a find_package LIBUVC file.
pkg_check_modules(LIBUVC libuvc)
# @TODO Turn into a find_package FFMPEG file.
pkg_check_modules(FFMPEG libavcodec)
# @TODO Turn into a find_package FFMPEG file.
pkg_check_modules(FFMPEG libavcodec)
endif()
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")