From 9281e37c011cb0e1cfaab373b853bb92a660b759 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Tue, 5 May 2026 14:15:46 -0400 Subject: [PATCH] fix: update TUI ASDF system from monolithic gateway-tui.lisp to 3-file split --- org/core-manifest.org | 5 ++++- passepartout.asd | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/org/core-manifest.org b/org/core-manifest.org index 98b3222..4e007e2 100644 --- a/org/core-manifest.org +++ b/org/core-manifest.org @@ -49,5 +49,8 @@ The TUI is a standalone system that depends on Croatoan (ncurses bindings) in ad #+begin_src lisp (defsystem :passepartout/tui :depends-on (:passepartout :croatoan :usocket :bordeaux-threads) - :components ((:file "lisp/gateway-tui"))) + :serial t + :components ((:file "lisp/gateway-tui-model") + (:file "lisp/gateway-tui-view") + (:file "lisp/gateway-tui-main"))) #+end_src diff --git a/passepartout.asd b/passepartout.asd index 4bacbca..25e24ba 100644 --- a/passepartout.asd +++ b/passepartout.asd @@ -18,4 +18,7 @@ (defsystem :passepartout/tui :depends-on (:passepartout :croatoan :usocket :bordeaux-threads) - :components ((:file "lisp/gateway-tui"))) + :serial t + :components ((:file "lisp/gateway-tui-model") + (:file "lisp/gateway-tui-view") + (:file "lisp/gateway-tui-main")))