2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-12-02 06:50:26 +01:00
waf/docs/slides/presentation/gfx/wscript
Thomas Nagy 352b329420 Cleanup
2012-10-31 01:46:38 +01:00

30 lines
515 B
Python

#!/usr/bin/env python
# encoding: utf-8
# Thomas Nagy, 2010 (ita)
top = '.'
out = '.'
def configure(conf):
conf.find_program('convert', var='CONVERT')
conf.find_program('dia', var='DIA')
def build(bld):
for x in bld.path.ant_glob('*.svg'):
bld(
rule='${CONVERT} -density 600 ${SRC} ${TGT}',
source=x,
target=x.change_ext('.png'),
)
for x in bld.path.ant_glob('*.dia'):
bld(
rule='${DIA} -t png ${SRC} -e ${TGT}',
source=x,
target=x.change_ext('.png'),
)
def options(opt):
pass