Move the GLSL shaders into their own files

This commit is contained in:
Kovid Goyal
2017-08-21 16:39:34 +05:30
parent 21874339f1
commit fe3e51a00d
8 changed files with 130 additions and 133 deletions

View File

@@ -319,7 +319,7 @@ def package(args, for_bundle=False): # {{{
def src_ignore(parent, entries):
return [
x for x in entries
if '.' in x and x.rpartition('.')[2] not in ('py', 'so', 'conf')
if '.' in x and x.rpartition('.')[2] not in ('py', 'so', 'conf', 'glsl')
]
shutil.copytree('kitty', os.path.join(libdir, 'kitty'), ignore=src_ignore)