mirror of https://github.com/davisking/dlib.git
fix ffmpeg cmake scripts not working with cmake 3.8
This commit is contained in:
parent
4d5db9940f
commit
91dcb04055
|
@ -838,7 +838,7 @@ if (NOT TARGET dlib)
|
|||
include(cmake_utils/find_ffmpeg.cmake)
|
||||
if (FFMPEG_FOUND)
|
||||
list (APPEND dlib_needed_public_includes ${FFMPEG_INCLUDE_DIRS})
|
||||
list (APPEND dlib_needed_public_libraries ${FFMPEG_LINK_LIBRARIES})
|
||||
list (APPEND dlib_needed_public_libraries PkgConfig::FFMPEG)
|
||||
enable_preprocessor_switch(DLIB_USE_FFMPEG)
|
||||
else()
|
||||
set(DLIB_USE_FFMPEG OFF CACHE BOOL ${DLIB_USE_FFMPEG_STR} FORCE )
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.8.0)
|
||||
|
||||
message(STATUS "Searching for FFMPEG/LIBAV")
|
||||
find_package(PkgConfig)
|
||||
if (PkgConfig_FOUND)
|
||||
|
|
Loading…
Reference in New Issue