aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-16 12:50:32 +0100
committerDavid Robillard <d@drobilla.net>2020-12-16 12:50:32 +0100
commita92a194b4fc64e0cfa4a88a59e261f236414d61c (patch)
tree957144b090753d2fbba1fe110d2fee902a8c62de /wscript
parentc186b1e8dc7a4f796c2bd406de17f840f466043a (diff)
downloadpugl-a92a194b4fc64e0cfa4a88a59e261f236414d61c.tar.gz
pugl-a92a194b4fc64e0cfa4a88a59e261f236414d61c.tar.bz2
pugl-a92a194b4fc64e0cfa4a88a59e261f236414d61c.zip
Fix flaky build on Windows
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/wscript b/wscript
index e4a4798..39b86b1 100644
--- a/wscript
+++ b/wscript
@@ -539,6 +539,8 @@ def build(bld):
requires=['pugl-%s' % PUGL_MAJOR_VERSION],
cflags=['-I${includedir}/puglxx-%s' % PUGL_MAJOR_VERSION])
+ bld.add_group()
+
def build_example(prog, source, platform, backend, **kwargs):
lang = 'cxx' if source[0].endswith('.cpp') else 'c'