diff options
Diffstat (limited to 'oneliners.cli.asd')
-rw-r--r-- | oneliners.cli.asd | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/oneliners.cli.asd b/oneliners.cli.asd new file mode 100644 index 0000000..aa24f4c --- /dev/null +++ b/oneliners.cli.asd @@ -0,0 +1,22 @@ +(defsystem "oneliners.cli" + :version "0.1.0" + :author "Colin Okay" + :license "AGPLv3" + :depends-on ("cl-readline" + "unix-opts") + :components ((:module "src" + :components + ((:file "main")))) + :description "" + :in-order-to ((test-op (test-op "oneliners.cli/tests")))) + +(defsystem "oneliners.cli/tests" + :author "Colin Okay" + :license "AGPLv3" + :depends-on ("oneliners.cli" + "rove") + :components ((:module "tests" + :components + ((:file "main")))) + :description "Test system for oneliners.cli" + :perform (test-op (op c) (symbol-call :rove :run c))) |