~marcoil/glproxy/detection

« back to all changes in this revision

Viewing changes to tests/tfp/wscript_build

  • Committer: Marc Ordinas i Llopis
  • Date: 2011-10-13 14:03:19 UTC
  • mfrom: (32.1.2 waf)
  • Revision ID: marc.ordinasillopis@linaro.org-20111013140319-9tgvqw6zrjigrrwh
Switch build system to waf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bld.program(
 
2
        source = 'glx_tfp.c',
 
3
        target = 'glproxy_glx_tfp',
 
4
        use = ['x11', 'glproxy'])
 
5
 
 
6
if ctx.env.HAVE_EGL:
 
7
        bld.program(
 
8
                source = ['egl_tfp.c', 'matrix.c'],
 
9
                target = 'glproxy_egl_tfp',
 
10
                use = ['x11', 'm', 'egl', 'glproxy'])
 
11