Advertisement
Guest User

Untitled

a guest
Oct 19th, 2021
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.26 KB | None | 0 0
  1. (asdf:defsystem "cli-program"
  2.   :name "cli-program"
  3.   :long-name "cli-program"
  4.   :description "My CLI program"
  5.   :long-description "Very cool CLI program using Common Lisp"
  6.   :version "0.1.0"
  7.   :author "Me <[email protected]>"
  8.   :maintainer "Me <[email protected]>"
  9.   :license "MIT"
  10.   :homepage "https://github/me/cli-program"
  11.   :bug-tracker "https://github/me/cli-program"
  12.   :source-control "https://github/me/cli-program"
  13.   :depends-on (:uiop
  14.                :osicat
  15.                :cl-fad
  16.                :pathname-utils
  17.                :clingon)
  18.   :components ((:module "utils"
  19.                 :pathname #P"src/"
  20.                 :components ((:file "utils")))
  21.                (:module "core"
  22.                 :pathname #P"src/"
  23.                 :components ((:file "envvars")
  24.                              (:file "info"
  25.                               :depends-on
  26.                               ("envvars"))
  27.                              (:file "cmds"
  28.                               :depends-on
  29.                               ("envvars" "utils" "info"))
  30.                              (:file "cli"
  31.                               :depends-on
  32.                               ("cmds")))
  33.                 :depends-on ("utils")))
  34.   :in-order-to ((test-op (test-op "cl-program.test"))))
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement