Files
mpp/utils/CMakeLists.txt
Herman Chen fe17ac5806 [cmake]: Remove static library dependency
Some test depend on mpp_base static library which is unwanted.

Change-Id: Ic3ab0826dee1284c0737d1015648c334a6328f8d
Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
2018-08-23 16:38:32 +08:00

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