-
-
Save tareifz/b2ec80ffd396fdb948ac5675d8f99677 to your computer and use it in GitHub Desktop.
ASDF package-inferred-system sample with :pathname
This file contains hidden or 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