[asdf-devel] What do I win?
dherring at tentpost.com
dherring at tentpost.com
Fri Oct 15 17:21:54 UTC 2010
Nikodemus wrote:
> ...of course, if ASDF had comething like
>
> (:module "ports"
> :components
> (:file "sbcl" :when (feature :sbcl))
> (:file "ccl" :when (feature :ccl)))
>
> then we'd be pretty close to best of both worlds
One could even flip that to a more lispy
(:module "ports"
:components
(:when (feature :sbcl) (:file "sbcl") ...)
(:when (feature :ccl) (:file "ccl")))
Which could even extend to
(:when (feature :sbcl)
(:module "sbcl-stuff" ...))
- Daniel
More information about the asdf-devel
mailing list