diff options
author | Greg Hogan <code@greghogan.com> | 2025-05-06 17:30:15 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 14:45:06 +0000 |
commit | 6e694a15aed1ae5561029aa3ea23b2c609733b7f (patch) | |
tree | 0a2efa47e807d30a8ca2d279213b7c3e2c5d5c30 | |
parent | 08921cc59e424ffd1602b32b87942b3f239c6810 (diff) |
gnu: csound: Fix tests.
* gnu/packages/audio.scm (csound)
[arguments]<#:configure-flags>: Enable testing.
[inputs]: Add cunit.
Change-Id: I1c7b451b3816dc75fae6990735584ab9255be89a
-rw-r--r-- | gnu/packages/audio.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ba1f332e1a..53b1eb89a6 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2158,11 +2158,15 @@ object library.") (sha256 (base32 "1lgasyk8j4cl9178vci1dph63nks3cgwhf8y1d04z9dc8gg15dyn")))) (build-system cmake-build-system) + (arguments + '(#:configure-flags '("-DBUILD_STATIC_LIBRARY=ON" ; required to build tests + "-DBUILD_TESTING=ON"))) (native-inputs (list bison flex gettext-minimal zlib)) (inputs (list alsa-lib boost + cunit jack-1 ladspa liblo |