diff options
author | David Robillard <d@drobilla.net> | 2015-09-13 16:24:45 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-09-13 16:24:45 -0400 |
commit | add00976a0c39f78f57df79c2a194c4f4e7adbf7 (patch) | |
tree | 0ac8e24a7d09faa2b6d177d147d471555cc09af6 /wscript | |
parent | 7c1f22fdf4782aa04a14a914b5a51b3617362366 (diff) | |
parent | d457ac139797b05fdc214f8af458833b58033224 (diff) |
Merge branch 'master' of git.drobilla.net:/home/drobilla/git.drobilla.net/pugl
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -95,6 +95,7 @@ def build(bld): # C Headers includedir = '${INCLUDEDIR}/pugl-%s/pugl' % PUGL_MAJOR_VERSION bld.install_files(includedir, bld.path.ant_glob('pugl/*.h')) + bld.install_files(includedir, bld.path.ant_glob('pugl/*.hpp')) # Pkgconfig file autowaf.build_pc(bld, 'PUGL', PUGL_VERSION, PUGL_MAJOR_VERSION, [], @@ -166,7 +167,7 @@ def build(bld): progs += ['pugl_test'] if bld.is_defined('HAVE_CAIRO'): progs += ['pugl_cairo_test'] - + for prog in progs: obj = bld(features = 'c cprogram', source = '%s.c' % prog, |