Update HTML/CSS/JS frontend

This commit is contained in:
Luciano Iam
2020-04-09 16:34:16 +02:00
committed by Robin Gareus
parent d694ee97c7
commit 891c63fe89
16 changed files with 214 additions and 9 deletions

View File

@@ -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