7 lines
228 B
Common Lisp
7 lines
228 B
Common Lisp
(defsystem "hp"
|
|
:description "My personal website"
|
|
:author "Akira Tempaku <paku@skyizwhite.dev>"
|
|
:class :package-inferred-system
|
|
:pathname "src"
|
|
:depends-on ("hp/main")
|
|
:in-order-to ((test-op (test-op "hp-tests"))))
|