CAT
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 30 Apr 2022 21:06:41 -0400 |
parents |
2d34585c5704 |
children |
cd3fc11e3298 |
(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
:str
)
:serial t
:components ((:module "src" :serial t
:components ((:file "package")
(:file "utils")
(:auto-module "problems")))))