Files
mpp/utils/CMakeLists.txt
Herman Chen 166ddee9e0 [utils]: Add iniparser for ini file parsing
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>
2018-04-27 17:20:32 +08:00

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)