Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (asdf:defsystem "cli-program"
- :name "cli-program"
- :long-name "cli-program"
- :description "My CLI program"
- :long-description "Very cool CLI program using Common Lisp"
- :version "0.1.0"
- :license "MIT"
- :homepage "https://github/me/cli-program"
- :bug-tracker "https://github/me/cli-program"
- :source-control "https://github/me/cli-program"
- :depends-on (:uiop
- :osicat
- :cl-fad
- :pathname-utils
- :clingon)
- :components ((:module "utils"
- :pathname #P"src/"
- :components ((:file "utils")))
- (:module "core"
- :pathname #P"src/"
- :components ((:file "envvars")
- (:file "info"
- :depends-on
- ("envvars"))
- (:file "cmds"
- :depends-on
- ("envvars" "utils" "info"))
- (:file "cli"
- :depends-on
- ("cmds")))
- :depends-on ("utils")))
- :in-order-to ((test-op (test-op "cl-program.test"))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement