mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
Merge branch 'devel' into 'main'
add reproc with cpp variant See merge request glicid-public/guix-glicid!366
This commit is contained in:
commit
6f0e200151
1 changed files with 19 additions and 0 deletions
19
glicid/packages/cpp.scm
Normal file
19
glicid/packages/cpp.scm
Normal file
|
@ -0,0 +1,19 @@
|
|||
(define-module (glicid packages cpp))
|
||||
|
||||
(use-modules (guix packages) (gnu packages cpp))
|
||||
|
||||
|
||||
(define-public reproc-with-cpp
|
||||
(package
|
||||
(inherit reproc)
|
||||
(name "reproc-with-cpp")
|
||||
(arguments
|
||||
;; No tests.
|
||||
`(#:tests? #f
|
||||
;; Build the shared library instead of a static one.
|
||||
#:configure-flags `("-DBUILD_SHARED_LIBS=1 -DREPROC++=1")))
|
||||
|
||||
|
||||
|
||||
))
|
||||
|
Loading…
Add table
Reference in a new issue