From a1a9ae008ad739bede9d895e6dd3d521bd4048f8 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 14 Feb 2025 14:44:03 +0000 Subject: Remove dependency on deploy - use ASDF's program-op instead --- cantedraw.asd | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'cantedraw.asd') diff --git a/cantedraw.asd b/cantedraw.asd index d3aa60d..b86503f 100644 --- a/cantedraw.asd +++ b/cantedraw.asd @@ -1,9 +1,14 @@ (asdf:defsystem :cantedraw - :depends-on (:deploy) :components ((:file "packages") (:file "lib.macros") (:file "lib.functions") (:file "cantedraw")) - :build-operation "deploy-op" - :build-pathname "cantedraw" + :build-operation "program-op" + :build-pathname "bin/cantedraw" :entry-point "cantedraw:start") + +#+sb-core-compression +(defmethod asdf:perform ((o asdf:image-op) (c asdf:system)) + (uiop:dump-image (asdf:output-file o c) + :executable t + :compression 9)) -- cgit v1.2.3-13-gbd6f