diff options
| author | Greg Hogan <code@greghogan.com> | 2025-05-06 17:30:15 +0000 |
|---|---|---|
| committer | Greg Hogan <code@greghogan.com> | 2025-08-04 03:21:23 +0000 |
| commit | 8abd3415e376683ec2cc70141726a8fdae1a3ec8 (patch) | |
| tree | 9ce13dc9fb17f6524330c58ce8f0bd655cbdbc98 /gnu | |
| parent | 4c0174c4bc9de2d8eea69616b90e48b070feb8a4 (diff) | |
gnu: csound: Fix tests.
* gnu/packages/audio.scm (csound)
[arguments]<#:configure-flags>: Build static library for testing.
[inputs]: Add cunit.
Change-Id: I1c7b451b3816dc75fae6990735584ab9255be89a
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/audio.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index db3cc55be7f..45c96a33c5b 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2163,11 +2163,14 @@ object library.") (sha256 (base32 "1lgasyk8j4cl9178vci1dph63nks3cgwhf8y1d04z9dc8gg15dyn")))) (build-system cmake-build-system) + (arguments + '(#:configure-flags '("-DBUILD_STATIC_LIBRARY=ON"))) ; required to build tests (native-inputs (list bison flex gettext-minimal zlib)) (inputs (list alsa-lib boost + cunit jack-1 ladspa liblo |
