Skip to content

Instantly share code, notes, and snippets.

@fukamachi
Created February 18, 2019 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fukamachi/fb70a7b77e26d7fb9b7eb0b68b4c1ab6 to your computer and use it in GitHub Desktop.
Save fukamachi/fb70a7b77e26d7fb9b7eb0b68b4c1ab6 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