2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 02:37:11 +00:00
tdesktop/Telegram/cmake/lib_ffmpeg.cmake

21 lines
356 B
CMake
Raw Normal View History

2019-11-08 15:02:15 +03:00
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
)