gnu: glslang: Build shared libraries.

* gnu/packages/vulkan.scm (glslang)[arguments]: Add #:configure-flags.
This commit is contained in:
Marius Bakke 2020-05-22 15:02:04 +02:00 committed by Marius Bakke
parent f3d3726e44
commit 1c5b9c3d96
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -118,7 +118,8 @@ (define-public glslang
(file-name (string-append name "-" version "-checkout"))))
(build-system cmake-build-system)
(arguments
'(#:tests? #f)) ;FIXME: requires bundled SPIRV-Tools
'(#:tests? #f ;FIXME: requires bundled SPIRV-Tools
#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
(native-inputs
`(("pkg-config" ,pkg-config)
("python" ,python)))