Import of the watch repository from Pebble

This commit is contained in:
Matthieu Jeanson 2024-12-12 16:43:03 -08:00 committed by Katharine Berry
commit 3b92768480
10334 changed files with 2564465 additions and 0 deletions

19
tools/wscript Normal file
View file

@ -0,0 +1,19 @@
import os
def configure(conf):
pass
def build(bld):
if bld.variant in ('test', 'test_rocky_emx', 'pdc2png'):
bld.recurse('pdc2png')
if bld.variant == 'test':
bld.recurse('tests')
# This variant is not supported yet, but can be used to build all tools
if bld.variant == 'tools':
tool_dirs = [os.path.dirname(f.abspath()) for f in bld.path.ant_glob('**/wscript')]
for dir in tool_dirs:
bld.recurse(dir)
# vim:filetype=python