gnu: openscenegraph: Add 'Release' configure flag.
* gnu/packages/graphics.scm (openscenegraph)[arguments]: Add "-DCMAKE_BUILD_TYPE=Release".master
parent
68a29ab8d0
commit
5638d71502
|
@ -339,7 +339,11 @@ visual effects work for film.")
|
||||||
#: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
|
||||||
|
|
Reference in New Issue