From 4792097ca56f278344f18a0a78aaca1278fd146e Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 27 Feb 2021 19:12:07 +0100 Subject: Move everything from `l/` into the project root This is the final project. Now that we got rid of the web extension and native host code, we can move the Lisp code to the root. --- extreload.asd | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 extreload.asd (limited to 'extreload.asd') diff --git a/extreload.asd b/extreload.asd new file mode 100644 index 0000000..96e076e --- /dev/null +++ b/extreload.asd @@ -0,0 +1,25 @@ +(asdf:defsystem extreload + :version "0.0.1" + :depends-on (:jsown + :sysexits + :trivial-timeout + :unix-opts + :wait-group + :websocket-driver-client) + :components ((:module "src" + :serial t + :components ((:file "package") + (:file "macro") + (:file "config") + (:file "option") + (:file "call-id") + (:file "devtools-protocol") + (:file "main")))) + + :build-operation "program-op" + :build-pathname "extreload" + :entry-point "extreload:main") + +#+sb-core-compression +(defmethod asdf:perform ((o asdf:image-op) (c asdf:system)) + (uiop:dump-image (asdf:output-file o c) :executable t :compression t)) -- cgit v1.2.3