rosalind.asd @ 97dda08645b3 default tip
SCSP
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Mon, 08 Aug 2022 19:26:18 -0400 |
| parents | a95ed046cc2c |
| children | (none) |
(defclass auto-module (module) ()) (defmethod component-children ((self auto-module)) (mapcar (lambda (p) (make-instance 'cl-source-file :type "lisp" :pathname p :name (pathname-name p) :parent (component-parent self))) (directory-files (component-pathname self) (make-pathname :directory nil :name *wild* :type "lisp")))) (asdf:defsystem :rosalind :name "rosalind" :description "Rosalind solutions." :author "Steve Losh <steve@stevelosh.com>" :maintainer "Steve Losh <steve@stevelosh.com>" :license "MIT" :version "0.0.1" :depends-on ( :1am :alexandria :cl-digraph :cl-digraph.dot :cl-ppcre :drakma :iterate :losh :parse-float :parsnip :str ) :serial t :components ((:module "src" :serial t :components ((:file "package") (:file "utils") (:auto-module "problems")))))