1# vim: syntax=cmake 2include_directories(.) 3 4#vp8 decoder api 5set(VP8D_API 6 ../../inc/vp8d_api.h 7 ) 8 9#vp8 decoder header 10set(VP8D_HDR 11 vp8d_parser.h 12 vp8d_codec.h 13 ) 14 15#vp8 decoder source 16set(VP8D_SRC 17 vp8d_api.c 18 vp8d_parser.c 19 ) 20 21add_library(${CODEC_VP8D} STATIC 22 ${VP8D_API} 23 ${VP8D_HDR} 24 ${VP8D_SRC} 25 ) 26 27target_link_libraries(${CODEC_VP8D} mpp_base) 28set_target_properties(${CODEC_VP8D} PROPERTIES FOLDER "mpp/codec") 29