diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-05-03 16:39:08 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-05-03 22:09:04 -0400 |
commit | 70d332746008281cffc4356f1d091174d2cee59c (patch) | |
tree | 8ccd8c53c84700b2973f3173464a016230b32d14 /gnu | |
parent | 7c4f524bc8c70f09b97438ace695a6f96736715e (diff) | |
download | guix-70d332746008281cffc4356f1d091174d2cee59c.tar.gz guix-70d332746008281cffc4356f1d091174d2cee59c.zip |
gnu: wxwidgets: Add a debug output.
* gnu/packages/wxwidgets.scm (wxwidgets) [outputs]: New field.
[arguments]: Add --enable-debug_info to #:configure-flags argument.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/wxwidgets.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm index 18606ff5e2..cf0fc5b91f 100644 --- a/gnu/packages/wxwidgets.scm +++ b/gnu/packages/wxwidgets.scm @@ -94,6 +94,7 @@ preserved-3rdparty)))))) (with-directory-excursion "src" (for-each delete-file-recursively bundled-src))))))) + (outputs '("out" "debug")) (build-system glib-or-gtk-build-system) (inputs (list catch-framework @@ -124,6 +125,7 @@ #:configure-flags #~'("--with-libmspack" "--with-regex" "--with-sdl" + "--enable-debug_info" "--enable-gui" "--enable-mediactrl" "--enable-webview") |