xref: /rockchip-linux_mpp/mpp/vproc/iep/test/CMakeLists.txt (revision 437bfbeb9567cca9cd9080e3f6954aa9d6a94f18)
1# vim: syntax=cmake
2# ----------------------------------------------------------------------------
3# mpp/vproc/iep built-in unit test case
4# ----------------------------------------------------------------------------
5# iep unit test
6option(IEP_TEST "Build base iep unit test" ${BUILD_TEST})
7if (IEP_TEST)
8    add_executable(iep_test iep_test.c)
9    target_link_libraries(iep_test ${MPP_SHARED} utils)
10    set_target_properties(iep_test PROPERTIES FOLDER "mpp/vproc/iep")
11    add_test(NAME iep_test COMMAND iep_test)
12endif()
13