You've already forked hexagonrpc
mirror of
https://github.com/linux-msm/hexagonrpc.git
synced 2026-02-25 13:13:52 -08:00
This shouldn't be a requirement to compile anything else. Stop requiring it for building anything, and assume the user just wants to compile the main project. Signed-off-by: Richard Acayan <mailingradian@gmail.com>
9 lines
178 B
Meson
9 lines
178 B
Meson
json_c = dependency('json-c', required : false)
|
|
|
|
if json_c.found()
|
|
executable('sscregistrygen',
|
|
'sscregistrygen.c',
|
|
c_args : cflags,
|
|
dependencies : [json_c])
|
|
endif
|