You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
266 B
Plaintext
6 lines
266 B
Plaintext
7 months ago
|
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)
|