forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-03-15 f8c23d1415aad662de5acfa33671b5d14d2c1300
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# vim: syntax=cmake
include_directories(inc)
 
add_library(vdpu34x_com STATIC vdpu34x_com.c)
 
if( HAVE_AVSD )
    add_subdirectory(avsd)
endif()
 
if( HAVE_H264D )
    add_subdirectory(h264d)
endif()
 
if( HAVE_H265D )
    add_subdirectory(h265d)
endif()
 
if( HAVE_VP9D )
    add_subdirectory(vp9d)
endif()