Created
February 18, 2019 04:16
-
-
Save fukamachi/fb70a7b77e26d7fb9b7eb0b68b4c1ab6 to your computer and use it in GitHub Desktop.
ASDF package-inferred-system sample with :pathname
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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