]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/SConscript
42e8c4c188196b29c9ea724516810fa1be11f83e
[lilypond.git] / input / regression / SConscript
1 # -*-python-*-
2
3 Import ('env')
4 #lys = env['src_glob'] (env, '*.ly')
5 lys = env['glob'] (env, '*.ly')
6
7 e = env.Copy (
8         TITLE = 'LilyPond Regression Tests',
9         LILYPOND_BOOK_FLAGS = '''--process="lilypond-bin --header=texidoc -I$srcdir/input/test -e '(ly:set-option (quote internal-type-checking) #t)'"''',
10                                                                                         __verbose = ' --verbose',
11         )
12
13 tely = e.LYS2TELY ('collated-files', lys)
14 texi = e.TEXI (tely)
15 pdf = e.PDF (texi)
16 html = e.PDF (texi)
17
18 env.Alias ('doc', pdf)
19 env.Alias ('doc', html)
20
21