mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: openscenegraph: Add 'Release' configure flag.
* gnu/packages/graphics.scm (openscenegraph)[arguments]: Add "-DCMAKE_BUILD_TYPE=Release".
This commit is contained in:
parent
68a29ab8d0
commit
5638d71502
1 changed files with 5 additions and 1 deletions
|
@ -339,7 +339,11 @@ (define-public openscenegraph
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list (string-append "-DCMAKE_INSTALL_RPATH="
|
(list (string-append "-DCMAKE_INSTALL_RPATH="
|
||||||
(assoc-ref %outputs "out") "/lib:"
|
(assoc-ref %outputs "out") "/lib:"
|
||||||
(assoc-ref %outputs "out") "/lib64"))))
|
(assoc-ref %outputs "out") "/lib64")
|
||||||
|
;; We need to set this flag or otherwise 'rd' will be added
|
||||||
|
;; to the name of the library binaries and break linking
|
||||||
|
;; with other programs.
|
||||||
|
"-DCMAKE_BUILD_TYPE=Release")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("unzip" ,unzip)))
|
`(("unzip" ,unzip)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue