changed project name from cl-forth to kurt

This commit is contained in:
2024-08-16 10:09:45 +03:00
parent 68947d00aa
commit e90d124892
19 changed files with 52 additions and 18 deletions

18
kurt.asd Normal file
View File

@@ -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")