mirror of
https://github.com/google/pebble.git
synced 2025-03-15 08:41:21 +00:00
12 lines
318 B
Python
12 lines
318 B
Python
from waflib import Task
|
|
from waflib.TaskGen import feature, before_method
|
|
|
|
|
|
def build(bld):
|
|
sources = bld.path.ant_glob('*.c')
|
|
bld.program(source=sources,
|
|
target='sdl-example',
|
|
defines=['main=app_main'],
|
|
use=['applib_sdl', 'fw_includes'])
|
|
|
|
# vim:filetype=python
|