summaryrefslogtreecommitdiff
path: root/share/web_surfaces/wscript
blob: d549abea38ab7c42a99fa98051c5b6f24b49ff96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
import os

def configure(conf):
    pass

def build(bld):
    datadir = os.path.join(bld.env['DATADIR'], 'web_surfaces')
    surfaces = bld.path.ant_glob ('**', excl='wscript')
    bld.install_files (datadir, surfaces, relative_trick=True)

def options(opt):
    pass