mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-01 09:01:33 +08:00
6 lines
266 B
Plaintext
6 lines
266 B
Plaintext
|
cmake_minimum_required(VERSION 3.1.3)
|
||
|
project(player)
|
||
|
include_directories("../../include")
|
||
|
link_directories("../../so")
|
||
|
add_executable(player "./player_opencv.c")
|
||
|
target_link_libraries(player mk_api ssl crypto avcodec swscale swresample avutil x264 openh264 x265)
|