0

I have a asdf system definition like this:

(asdf:defsystem #:my-package
    :serial t...

    :components ((:file "package")
                 (:file "macros")..........
                 (:file "tests/test-debug")
                 (:file "tests/test-regression") ))

Instead of specifying each file in the folder tests separately, I would like to specify all the files in the folder tests. Something like tests/* or (:directory "tests")

Can that be done?

RAbraham
  • 5,956
  • 8
  • 45
  • 80

1 Answers1

2

In the asdf source repository, see contrib/wild-modules.lisp

Faré
  • 952
  • 5
  • 4