Clean up top-level source tree

Collect architecture independent data in 'share' subfolder.
This also matches the install path
This commit is contained in:
Robin Gareus 2020-02-23 15:26:48 +01:00
parent 96ef1dc0ed
commit 54c4d3adc5
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
564 changed files with 25 additions and 25 deletions

18
share/export/wscript Normal file
View file

@ -0,0 +1,18 @@
#!/usr/bin/python
import os
top = '.'
out = 'build'
def configure(conf):
pass
def build(bld):
presets = bld.path.ant_glob ('*.preset')
formats = bld.path.ant_glob ('*.format')
bld.install_files (os.path.join(bld.env['DATADIR'], 'export'),
presets + formats)
def options(opt):
pass