aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-08-08 07:04:48 -0500
committerColin Okay <colin@cicadas.surf>2022-08-08 07:04:48 -0500
commit732ee50981ce6559b97fbfb5dcc9238165fb95ef (patch)
treebee9a7196d924eec196634ae32f71ed7db2a3fff
parentdc04d1f1aadef514c9b5b362b499654c1e9b6ec2 (diff)
[add] swank requires to build script
-rw-r--r--build.lisp18
1 files changed, 16 insertions, 2 deletions
diff --git a/build.lisp b/build.lisp
index 6f8eb5b..f35eb08 100644
--- a/build.lisp
+++ b/build.lisp
@@ -1,6 +1,20 @@
-(pushnew #P".." ql:*local-project-directories*)
-(ql:register-local-projects)
+;; (pushnew #P".." ql:*local-project-directories*)
+;; (ql:register-local-projects)
(ql:quickload :oneliners.api)
+
+(swank:swank-require
+ '(SWANK-IO-PACKAGE::SWANK-INDENTATION
+ SWANK-IO-PACKAGE::SWANK-TRACE-DIALOG
+ SWANK-IO-PACKAGE::SWANK-PACKAGE-FU
+ SWANK-IO-PACKAGE::SWANK-PRESENTATIONS
+ SWANK-IO-PACKAGE::SWANK-MACROSTEP
+ SWANK-IO-PACKAGE::SWANK-FUZZY
+ SWANK-IO-PACKAGE::SWANK-FANCY-INSPECTOR
+ SWANK-IO-PACKAGE::SWANK-C-P-C
+ SWANK-IO-PACKAGE::SWANK-ARGLISTS
+ SWANK-IO-PACKAGE::SWANK-REPL))
+
+
(sb-ext:save-lisp-and-die "olwiki-server"
:toplevel 'oneliners.api::run
:executable t)