(defsystem "homestead" :version "0.0.1" :author "Gosha Tcherednitchenko " :license "MIT License" :depends-on (#:cl-markdown) :components ((:module "src" :components ((:file "util") (:file "templates" :depends-on ("util")) (:file "main" :depends-on ("util" "templates"))))) :description "A static website generator" :in-order-to ((test-op (test-op "homestead/tests")))) (defsystem "homestead/tests" :author "Gosha Tcherednitchenko " :license "MIT License" :depends-on ("homestead" "fiveam") :components ((:module "tests" :components ((:file "main")))) :description "Test system for homestead" :perform (test-op (o s) (uiop:symbol-call :fiveam :run! 'homestead/tests/main:all-tests)))