mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
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)
|
include(cmake_utils/find_ffmpeg.cmake)
|
||||||
if (FFMPEG_FOUND)
|
if (FFMPEG_FOUND)
|
||||||
list (APPEND dlib_needed_public_includes ${FFMPEG_INCLUDE_DIRS})
|
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)
|
enable_preprocessor_switch(DLIB_USE_FFMPEG)
|
||||||
else()
|
else()
|
||||||
set(DLIB_USE_FFMPEG OFF CACHE BOOL ${DLIB_USE_FFMPEG_STR} FORCE )
|
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")
|
message(STATUS "Searching for FFMPEG/LIBAV")
|
||||||
find_package(PkgConfig)
|
find_package(PkgConfig)
|
||||||
if (PkgConfig_FOUND)
|
if (PkgConfig_FOUND)
|
||||||
@ -24,4 +26,4 @@ if (PkgConfig_FOUND)
|
|||||||
else()
|
else()
|
||||||
message(STATUS "PkgConfig could not be found, FFMPEG won't be available")
|
message(STATUS "PkgConfig could not be found, FFMPEG won't be available")
|
||||||
set(FFMPEG_FOUND 0)
|
set(FFMPEG_FOUND 0)
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user