hc
2023-03-13 2ec15ae1cb4be1b4fcb56c6d621123d7ebdaad6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
include_directories(.)
 
set(VP8E_API
    )
set(VP8E_COMMON
    )
set(VP8E_HDR
    vp8e_debug.h
    vp8e_rc.h)
set(VP8E_SRC
    vp8e_api_v2.c
    vp8e_rc.c)
 
add_library(codec_vp8e STATIC
            ${VP8E_API}
            ${VP8E_COMMON}
            ${VP8E_HDR}
            ${VP8E_SRC}
            )
 
target_link_libraries(codec_vp8e mpp_base)
set_target_properties(codec_vp8e PROPERTIES FOLDER "mpp/codec")