mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 01:26:49 +08:00

Some test depend on mpp_base static library which is unwanted. Change-Id: Ic3ab0826dee1284c0737d1015648c334a6328f8d Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
12 lines
321 B
CMake
12 lines
321 B
CMake
# vim: syntax=cmake
|
|
# ----------------------------------------------------------------------------
|
|
# add libvpu implement
|
|
# ----------------------------------------------------------------------------
|
|
add_library(utils STATIC
|
|
utils.c
|
|
iniparser.c
|
|
dictionary.c
|
|
)
|
|
|
|
target_link_libraries(utils ${MPP_SHARED})
|