mirror of
https://github.com/google/pebble.git
synced 2025-03-19 10:31:21 +00:00
14 lines
320 B
Text
14 lines
320 B
Text
|
from waftools.pebble_test import clar
|
||
|
|
||
|
def build(ctx):
|
||
|
clar(ctx,
|
||
|
sources_ant_glob = "src/fw/console/cobs.c",
|
||
|
test_sources_ant_glob = "test_cobs_decode.c")
|
||
|
|
||
|
clar(ctx,
|
||
|
sources_ant_glob = "src/fw/console/cobs.c",
|
||
|
test_sources_ant_glob = "test_cobs_encode.c")
|
||
|
|
||
|
# vim:filetype=python
|
||
|
|