1# vim: syntax=cmake 2 3add_subdirectory(common) 4 5if( HAVE_H263D ) 6 add_subdirectory(h263d) 7endif() 8 9if( HAVE_MPEG2D ) 10 add_subdirectory(m2vd) 11endif() 12 13if( HAVE_MPEG4D ) 14 add_subdirectory(mpg4d) 15endif() 16 17if( HAVE_VP8D ) 18 add_subdirectory(vp8d) 19endif() 20 21if( HAVE_JPEGD ) 22 add_subdirectory(jpegd) 23endif() 24 25if( HAVE_AV1D ) 26 add_subdirectory(av1d) 27endif() 28 29if( HAVE_JPEGE ) 30 add_subdirectory(jpege) 31endif() 32 33if( HAVE_H264E ) 34 add_subdirectory(h264e) 35endif() 36 37if( HAVE_VP8E) 38 add_subdirectory(vp8e) 39endif() 40