Files
lspack/lspack.asd
T

21 lines
493 B
Common Lisp

(defsystem "lspack"
:author "Emre Akan"
:description "Quickstart Common Lisp projects"
:license "GPL-3.0"
:version "0.0.5"
:depends-on ("uiop")
:pathname "src/"
:serial t
:components ((:file "package")
(:file "util")
(:file "license")
(:file "starter")))
(defsystem "lspack/exe"
:depends-on ("lspack")
:build-operation program-op
:build-pathname "lspack"
:entry-point "lspack/exe:main"
:components ((:file "src/main")))