mirror of
https://github.com/nyanmisaka/mpp.git
synced 2026-01-24 01:10:39 +01: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>
10 lines
311 B
CMake
10 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)
|