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()
|
|