xref: /rockchip-linux_mpp/mpp/hal/vpu/h264e/CMakeLists.txt (revision 437bfbeb9567cca9cd9080e3f6954aa9d6a94f18)
1# vim: syntax=cmake
2include_directories(.)
3include_directories(../../common/h264/)
4include_directories(../../../codec/enc/h264/)
5include_directories(../common/)
6
7# hal h264 header
8set(HAL_H264E_HDR
9    )
10
11# hal h264 encoder sourse
12set(HAL_H264E_SRC
13    hal_h264e_vepu2_v2.c
14    hal_h264e_vepu1_v2.c
15    hal_h264e_vepu_v2.c
16    hal_h264e_vpu_tbl.c
17    )
18
19add_library(hal_h264e_vpu STATIC
20            ${HAL_H264E_HDR}
21            ${HAL_H264E_SRC}
22           )
23
24target_link_libraries(hal_h264e_vpu hal_h264e_com hal_vepu_common ${CODEC_H264E})
25set_target_properties(hal_h264e_vpu PROPERTIES FOLDER "mpp/hal")
26