rosalind.asd @ 2d34585c5704

Clean up, remove quickutils
author Steve Losh <steve@stevelosh.com>
date Sun, 19 Jan 2020 19:51:35 -0500
parents ad32169fc54c
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")))))