2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-22 02:07:24 +00:00
tdesktop/Telegram/cmake/lib_ffmpeg.cmake
2019-11-09 19:06:00 +03:00

21 lines
356 B
CMake

add_library(lib_ffmpeg OBJECT)
init_target(lib_ffmpeg)
set(lib_ffmpeg_sources
PRIVATE
ffmpeg/ffmpeg_utility.cpp
ffmpeg/ffmpeg_utility.h
)
nice_target_sources(lib_ffmpeg ${src_loc} "${lib_ffmpeg_sources}")
target_include_directories(lib_ffmpeg
PUBLIC
${src_loc}
${libs_loc}/ffmpeg
)
target_link_libraries(lib_ffmpeg
PUBLIC
lib_base
)