diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2022-02-23 14:51:32 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-02-23 22:05:01 -0500 |
commit | 74f9c8e47f08826eff12b793e668d7e8c5898b0e (patch) | |
tree | 621e1c24e7b5884414dffe0431c7f2201fe65673 /gnu | |
parent | 45d0c82dcc7380e78472dd819981a5025f6157e5 (diff) |
gnu: imgui: Add missing build files.
* gnu/packages/toolkits.scm (imgui)[phases]: Add imgui_tables.cpp and
imgui_widgets.cpp to the build phase.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/toolkits.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/toolkits.scm b/gnu/packages/toolkits.scm index ee0cffa2f9..ba860014a4 100644 --- a/gnu/packages/toolkits.scm +++ b/gnu/packages/toolkits.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -69,6 +70,8 @@ "-o" "libimgui.so" "imgui.cpp" "imgui_draw.cpp" + "imgui_tables.cpp" + "imgui_widgets.cpp" ;; Include the supported backends. "backends/imgui_impl_glfw.cpp" "backends/imgui_impl_sdl.cpp" |