mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-21 16:19:23 +08:00

Source from https://github.com/ndevilla/iniparser With MIT License: https://github.com/ndevilla/iniparser/blob/master/LICENSE NOTE: remove getdouble interface due to Android do not support atof. Change-Id: I6b10f67875144bc0c36182c07024c133aa6987a5 Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
11 lines
311 B
CMake
11 lines
311 B
CMake
# vim: syntax=cmake
|
|
# ----------------------------------------------------------------------------
|
|
# add libvpu implement
|
|
# ----------------------------------------------------------------------------
|
|
add_library(utils STATIC
|
|
utils.c
|
|
iniparser.c
|
|
dictionary.c
|
|
)
|
|
target_link_libraries(utils osal)
|