Files
hexagonrpc/chrecd/meson.build
Richard Acayan b7ad1021a2 build: apply default C flags to all targets
The warning flags should be applied to the entire C codebase in order to
help ensure correct code. No extra warnings are emitted by doing this.
2024-04-11 17:45:47 -04:00

10 lines
183 B
Meson

executable('chrecd',
'interfaces.c',
'main.c',
c_args : cflags,
include_directories : include,
install : true,
link_with : libhexagonrpc,
install_dir : client_target,
)