summaryrefslogtreecommitdiffstats
path: root/tools/glsl_preproc/meson.build
blob: 677ef7cd5033352c9b0c06c4c9f3a1b2783325d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
strip_arg = get_option('debug') ? [] : [ '--strip' ]
glsl_preproc = [ python, join_paths(meson.current_source_dir(), 'main.py') ] + \
                 strip_arg + [ '@INPUT@', '@OUTPUT@' ]
glsl_deps = files(
  'macros.py',
  'statement.py',
  'templates.py',
  'templates/call.c.j2',
  'templates/function.c.j2',
  'templates/glsl_block.c.j2',
  'templates/struct.c.j2',
  'variables.py',
)