mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-16 14:11:10 +08:00

Remove all mpp object from vpu.so NOTE: link_directories should be before add_library or add_executable. Change-Id: Idee25e1ccc2c3182f7b8c26c277d396e28654f3e Signed-off-by: Herman Chen <herman.chen@rock-chips.com> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
68 lines
2.0 KiB
CMake
68 lines
2.0 KiB
CMake
# vim: syntax=cmake
|
|
# ----------------------------------------------------------------------------
|
|
# mpp built-in unit test case
|
|
# ----------------------------------------------------------------------------
|
|
# macro for adding mpp sub-module unit test
|
|
macro(add_mpp_test module)
|
|
set(test_name ${module}_test)
|
|
string(TOUPPER ${test_name} test_tag)
|
|
#message(STATUS "moduule : ${module}")
|
|
#message(STATUS "test_name : ${test_name}")
|
|
#message(STATUS "test_tag : ${test_tag}")
|
|
|
|
option(${test_tag} "Build mpp ${module} unit test" ON)
|
|
if(${test_tag})
|
|
add_executable(${test_name} ${test_name}.c mpp_event_trigger.c mpp_parse_cfg.c)
|
|
target_link_libraries(${test_name} ${MPP_SHARED} utils)
|
|
set_target_properties(${test_name} PROPERTIES FOLDER "test")
|
|
install(TARGETS ${test_name} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
#add_test(NAME ${test_name} COMMAND ${test_name})
|
|
endif()
|
|
endmacro()
|
|
|
|
# mpi unit test
|
|
add_mpp_test(mpi)
|
|
|
|
# mpp info test
|
|
add_mpp_test(mpp_info)
|
|
|
|
# mpi decoder unit test
|
|
add_mpp_test(mpi_dec)
|
|
|
|
# mpi decoder multi-thread input / output unit test
|
|
add_mpp_test(mpi_dec_mt)
|
|
|
|
# mpi encoder unit test
|
|
add_mpp_test(mpi_enc)
|
|
|
|
# mpi rc unit test
|
|
add_mpp_test(mpi_rc)
|
|
|
|
# new mpi rc unit test
|
|
add_mpp_test(mpi_rc2)
|
|
|
|
# new enc multi unit test
|
|
add_mpp_test(mpi_enc_multi)
|
|
|
|
# new dec multi unit test
|
|
add_mpp_test(mpi_dec_multi)
|
|
|
|
macro(add_legacy_test module)
|
|
set(test_name ${module}_test)
|
|
string(TOUPPER ${test_name} test_tag)
|
|
#message(STATUS "moduule : ${module}")
|
|
#message(STATUS "test_name : ${test_name}")
|
|
#message(STATUS "test_tag : ${test_tag}")
|
|
|
|
option(${test_tag} "Build legacy ${module} unit test" ON)
|
|
if(${test_tag})
|
|
add_executable(${test_name} ${test_name}.c)
|
|
target_link_libraries(${test_name} dl)
|
|
set_target_properties(${test_name} PROPERTIES FOLDER "test")
|
|
install(TARGETS ${test_name} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
endif()
|
|
endmacro()
|
|
|
|
# legacy vpu_api unit test
|
|
add_legacy_test(vpu_api)
|