From e90d1248920b50e5f8c25ab406a9095e3f6a2358 Mon Sep 17 00:00:00 2001 From: mRnea Date: Fri, 16 Aug 2024 10:09:45 +0300 Subject: changed project name from cl-forth to kurt --- kurt.asd | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 kurt.asd (limited to 'kurt.asd') diff --git a/kurt.asd b/kurt.asd new file mode 100644 index 0000000..517c5bb --- /dev/null +++ b/kurt.asd @@ -0,0 +1,18 @@ +(asdf:defsystem "kurt" + :description "Stack based language implemented in Common Lisp" + :version "0.1" + :author "Emre Akan" + :licence "MIT" + :depends-on ("iterate" "cl-fad" "clingon") + :serial t + :components ((:file "package") + (:file "util") + (:file "errors") + (:file "codegen") + (:file "cl-forth") + (:file "simulation") + (:file "main") + (:file "test/tests")) + :build-operation "program-op" + :build-pathname "test/kurt" + :entry-point "kurt:main") -- cgit v1.2.3