Sha256: 1d3c882f53f86c76078079fc14cfd6a0b3c792b1ab4ad1ece0679415fb68b6f9

Contents?: true

Size: 491 Bytes

Versions: 5

Compression:

Stored size: 491 Bytes

Contents

#
# This file is the default set of rules to compile a Pebble project.
#
# Feel free to customize this to your needs.
#

top = '.'
out = 'build'

def options(ctx):
    ctx.load('pebble_sdk')

def configure(ctx):
    ctx.load('pebble_sdk')

def build(ctx):
    ctx.load('pebble_sdk')

    ctx.pbl_program(source=ctx.path.ant_glob('src/**/*.c'),
                    target='pebble-app.elf')

    ctx.pbl_bundle(elf='pebble-app.elf',
                   js=ctx.path.ant_glob('src/js/**/*.js'))

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pebblex-0.0.7 spec/fixtures/project_with_js/wscript
pebblex-0.0.6 spec/fixtures/project_with_js/wscript
pebblex-0.0.5 spec/fixtures/project_with_js/wscript
pebblex-0.0.4 spec/fixtures/project_with_js/wscript
pebblex-0.0.3 spec/fixtures/project_with_js/wscript