summaryrefslogtreecommitdiff
path: root/build.lisp
diff options
context:
space:
mode:
authorGrant Shangreaux <shoshin@cicadas.surf>2023-01-24 14:02:27 -0600
committerGrant Shangreaux <shoshin@cicadas.surf>2023-01-24 14:02:27 -0600
commit1d40a541e41b37d03446b471ef8c072b005ee24e (patch)
tree30d5a0951c25a2376f562a521cf72f2cf08f544f /build.lisp
parent7bbe9edc81e11aaee184135224712198b2435d87 (diff)
Add: build.lisp with running swank server
Diffstat (limited to 'build.lisp')
-rw-r--r--build.lisp16
1 files changed, 16 insertions, 0 deletions
diff --git a/build.lisp b/build.lisp
new file mode 100644
index 0000000..8bb5ec5
--- /dev/null
+++ b/build.lisp
@@ -0,0 +1,16 @@
+(ql:quickload :dnd)
+
+(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))
+
+(ensure-directories-exist #P"./bin/")
+(sb-ext:save-lisp-and-die "./bin/dnd" :toplevel #'dnd:boot :executable t)