cmake: Find libubox/blobmsg_json.h
Add a CMake FIND_PATH and INCLUDE_DIRECTORIES searching for blobmsg_json.h. Some external toolchains which do not include standard locations would fail to find the header otherwise. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
This commit is contained in:
parent
26c98ec94d
commit
0577cfc1ac
1 changed files with 3 additions and 0 deletions
|
@ -31,6 +31,9 @@ ENDIF()
|
|||
FIND_PATH(ubus_include_dir libubus.h)
|
||||
INCLUDE_DIRECTORIES(${ubus_include_dir})
|
||||
|
||||
FIND_PATH(ubox_include_dir libubox/blobmsg_json.h)
|
||||
INCLUDE_DIRECTORIES(${ubox_include_dir})
|
||||
|
||||
ADD_EXECUTABLE(rpcd main.c exec.c session.c uci.c plugin.c)
|
||||
TARGET_LINK_LIBRARIES(rpcd ubox ubus uci dl blobmsg_json ${json} ${crypt})
|
||||
|
||||
|
|
Loading…
Reference in a new issue