summaryrefslogtreecommitdiff
path: root/share/web_surfaces/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'share/web_surfaces/wscript')
-rw-r--r--share/web_surfaces/wscript13
1 files changed, 13 insertions, 0 deletions
diff --git a/share/web_surfaces/wscript b/share/web_surfaces/wscript
new file mode 100644
index 0000000000..d549abea38
--- /dev/null
+++ b/share/web_surfaces/wscript
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+import os
+
+def configure(conf):
+ pass
+
+def build(bld):
+ datadir = os.path.join(bld.env['DATADIR'], 'web_surfaces')
+ surfaces = bld.path.ant_glob ('**', excl='wscript')
+ bld.install_files (datadir, surfaces, relative_trick=True)
+
+def options(opt):
+ pass