mirror of
https://github.com/google/pebble.git
synced 2025-03-15 16:51:21 +00:00
13 lines
318 B
Text
13 lines
318 B
Text
|
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
|