summaryrefslogtreecommitdiff
path: root/osc/wscript
blob: 64b173af5c6b0b4c59548d912ec6273430ab61a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python

import os

top = '.'
out = 'build'

def configure(conf):
    pass

def build(bld):
    presets = bld.path.ant_glob ('*.preset')
    bld.install_files (os.path.join(bld.env['DATADIR'], 'osc'), presets)

def options(opt):
    pass