xref: /rockchip-linux_mpp/mpp/hal/rkenc/h265e/CMakeLists.txt (revision 437bfbeb9567cca9cd9080e3f6954aa9d6a94f18)
1# vim: syntax=cmake
2include_directories(.)
3include_directories(../../common/h265/)
4include_directories(../common/)
5# mpp/codec/enc/h265 for h265 syntax
6include_directories(../../../codec/enc/h265/)
7
8# hal h265 header
9set(HAL_H265E_HDR
10    hal_h265e_vepu541_reg.h
11    hal_h265e_vepu580_reg.h
12    hal_h265e_vepu510_reg.h
13    hal_h265e_vepu511_reg.h
14    )
15
16# hal h265 encoder sourse
17set(HAL_H265E_SRC
18    hal_h265e_vepu541.c
19    hal_h265e_vepu580.c
20    hal_h265e_vepu540c.c
21    hal_h265e_vepu510.c
22    hal_h265e_vepu511.c
23    )
24
25add_library(hal_h265e_vepu541 STATIC
26            ${HAL_H265E_HDR}
27            ${HAL_H265E_SRC}
28            )
29
30target_link_libraries(hal_h265e_vepu541 hal_h265e_com hal_common hal_vepu541_common)
31set_target_properties(hal_h265e_vepu541 PROPERTIES FOLDER "mpp/hal")
32