Skip to content
Snippets Groups Projects
Commit 304efd9c authored by Simon McVittie's avatar Simon McVittie
Browse files

Merge branch 'wip/include_shaders' into 'master'

build-relocatable-install: Include Vulkan shaders

Closes #62

See merge request !261
parents 4363e0dd 3687916e
No related branches found
No related tags found
1 merge request!261build-relocatable-install: Include Vulkan shaders
Pipeline #9779 passed
......@@ -364,6 +364,15 @@ def main():
),
)
for shader in glob.glob(os.path.join(path, 'shaders', '*.spv')):
install(
shader,
os.path.join(
installation, 'libexec', 'steam-runtime-tools-0',
'shaders', os.path.basename(shader),
)
)
primary_architecture = subprocess.check_output([
'dpkg', '--print-architecture',
]).decode('utf-8').strip()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment