gamao.asd 1.2 KB

123456789101112131415161718192021222324252627282930
  1. (asdf:defsystem #:gamao
  2. :description "A backgammon server"
  3. :author "Stanislav Kondratyev <kondratjevsk@gmail.com>"
  4. :license "CC0"
  5. :in-order-to ((test-op (test-op "gamao/test")))
  6. :serial t
  7. :components ((:file "package")
  8. (:module "src"
  9. :serial t
  10. :components ((:file "pvector")
  11. (:file "checker-position")
  12. (:module "game"
  13. :serial t
  14. :components ((:file "checker-game")
  15. (:file "game-api")
  16. (:file "board")
  17. (:file "simple-checker-game")
  18. (:file "standard-game")
  19. (:file "backgammon-game")))))))
  20. (asdf:defsystem #:gamao/test
  21. :depends-on (#:gamao #:fiveam)
  22. :perform (test-op (o s)
  23. (uiop:symbol-call '#:gamao/test '#:run-all))
  24. :license "CC0"
  25. :components ((:module "test"
  26. :serial t
  27. :components ((:file "package")
  28. (:file "main")))))