diff options
author | David Robillard <d@drobilla.net> | 2015-09-13 11:37:52 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-09-13 11:37:52 -0400 |
commit | d457ac139797b05fdc214f8af458833b58033224 (patch) | |
tree | a9d888e6e937509061ac7b833ec42e3d65defcae /wscript | |
parent | 6abce4944cb49c65dd1d592be45b766110dbfeba (diff) | |
download | pugl-d457ac139797b05fdc214f8af458833b58033224.tar.gz pugl-d457ac139797b05fdc214f8af458833b58033224.tar.bz2 pugl-d457ac139797b05fdc214f8af458833b58033224.zip |
Add C++ bindings.
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, |