diff options
author | David Robillard <d@drobilla.net> | 2020-04-04 13:36:47 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-04 13:36:47 +0200 |
commit | 20fd80c8f20d0d6bda660bd9a273e0c4a78cb9ac (patch) | |
tree | f144e9498a0337bef0d20c9004b024e26a9d2b32 /wscript | |
parent | 11800b6179458eb962cd1862e4053efd7f28c2f4 (diff) | |
download | pugl-20fd80c8f20d0d6bda660bd9a273e0c4a78cb9ac.tar.gz pugl-20fd80c8f20d0d6bda660bd9a273e0c4a78cb9ac.tar.bz2 pugl-20fd80c8f20d0d6bda660bd9a273e0c4a78cb9ac.zip |
Shader Demo: Support both GL 3 and 4
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -353,8 +353,9 @@ def build(bld): build_example('pugl_print_events', ['examples/pugl_print_events.c'], platform, 'stub') - build_example('pugl_gl3_demo', - ['examples/pugl_gl3_demo.c', 'examples/glad/glad.c'], + build_example('pugl_shader_demo', + ['examples/pugl_shader_demo.c', + 'examples/glad/glad.c'], platform, 'gl', uselib=['DL', 'GL', 'M']) if bld.env.HAVE_CAIRO: |