mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
build-system: meson: Add windres compiler for mingw.
* guix/build-system/meson.scm (make-binaries-alist): Add windres when compiling for mingw. Change-Id: I7f1f34cd5129918f4aba0baf1d2742e0bfbbb751 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
cb1183121b
commit
d4666145b4
1 changed files with 4 additions and 1 deletions
|
|
@ -103,7 +103,10 @@ TRIPLET."
|
|||
(objcopy . ,(string-append triplet "-objcopy"))
|
||||
(ar . ,(string-append triplet "-ar"))
|
||||
(ld . ,(string-append triplet "-ld"))
|
||||
(strip . ,(string-append triplet "-strip"))))
|
||||
(strip . ,(string-append triplet "-strip"))
|
||||
,@(if (target-mingw? triplet)
|
||||
`((windres . ,(string-append triplet "-windres")))
|
||||
'())))
|
||||
|
||||
(define (make-built-in-options-alist triplet)
|
||||
(if (target-avr? triplet)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue