Skip to content

Instantly share code, notes, and snippets.

@tareifz
Forked from fukamachi/hoge.asd
Created April 28, 2024 06:33
Show Gist options
  • Select an option

  • Save tareifz/b2ec80ffd396fdb948ac5675d8f99677 to your computer and use it in GitHub Desktop.

Select an option

Save tareifz/b2ec80ffd396fdb948ac5675d8f99677 to your computer and use it in GitHub Desktop.
ASDF package-inferred-system sample with :pathname
(defsystem "hoge"
:class :package-inferred-system
:pathname "src"
:depends-on ("hoge/main")
:in-order-to ((test-op (test-op "hoge/tests"))))
(defsystem "hoge/tests"
:pathname "tests"
:depends-on ("hoge")
:components
((:file "main")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment