mirror of https://github.com/procxx/kepka.git
Add some output
This commit is contained in:
parent
7bf02f5bad
commit
6d82d2e14e
|
@ -17,6 +17,7 @@
|
||||||
# - AVUTIL
|
# - AVUTIL
|
||||||
# - POSTPROC
|
# - POSTPROC
|
||||||
# - SWSCALE
|
# - SWSCALE
|
||||||
|
# - SWRESAMPLE
|
||||||
# the following variables will be defined
|
# the following variables will be defined
|
||||||
# <component>_FOUND - System has <component>
|
# <component>_FOUND - System has <component>
|
||||||
# <component>_INCLUDE_DIRS - Include directory necessary for using the <component> headers
|
# <component>_INCLUDE_DIRS - Include directory necessary for using the <component> headers
|
||||||
|
@ -113,12 +114,12 @@ if (NOT FFMPEG_LIBRARIES)
|
||||||
# Check if the required components were found and add their stuff to the FFMPEG_* vars.
|
# Check if the required components were found and add their stuff to the FFMPEG_* vars.
|
||||||
foreach (_component ${FFmpeg_FIND_COMPONENTS})
|
foreach (_component ${FFmpeg_FIND_COMPONENTS})
|
||||||
if (${_component}_FOUND)
|
if (${_component}_FOUND)
|
||||||
# message(STATUS "Required component ${_component} present.")
|
message(STATUS "Found ffmpeg component ${_component}.")
|
||||||
set(FFMPEG_LIBRARIES ${FFMPEG_LIBRARIES} ${${_component}_LIBRARIES})
|
set(FFMPEG_LIBRARIES ${FFMPEG_LIBRARIES} ${${_component}_LIBRARIES})
|
||||||
set(FFMPEG_DEFINITIONS ${FFMPEG_DEFINITIONS} ${${_component}_DEFINITIONS})
|
set(FFMPEG_DEFINITIONS ${FFMPEG_DEFINITIONS} ${${_component}_DEFINITIONS})
|
||||||
list(APPEND FFMPEG_INCLUDE_DIRS ${${_component}_INCLUDE_DIRS})
|
list(APPEND FFMPEG_INCLUDE_DIRS ${${_component}_INCLUDE_DIRS})
|
||||||
else ()
|
else ()
|
||||||
# message(STATUS "Required component ${_component} missing.")
|
message(STATUS "Missing ffmpeg component ${_component}.")
|
||||||
endif ()
|
endif ()
|
||||||
endforeach ()
|
endforeach ()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue