scully.asd @ 7fe3a52bf1f6

Initial stab and the head collapsing.

Not 100% sure I've got this right...
author Steve Losh <steve@stevelosh.com>
date Sat, 05 Nov 2016 12:22:36 +0000
parents 8e281422161d
children b7c02baa4fee
(asdf:defsystem :scully
  :name "scully"
  :description "A General Game Player for incomplete-information games"

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on (:iterate
               :losh
               :temperance
               :hunchentoot
               :optima
               :smug
               :cl-dot
               :cl-algebraic-data-type
               :cl-arrows
               :cl-ggp
               :cl-hamt
               :trivialib.bdd)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "gdl")
                             (:file "zdd")
                             (:module "reasoners" :serial t
                              :components ((:file "prolog")))
                             (:module "grounders" :serial t
                              :components ((:file "prolog")
                                           (:file "fluxplayer")))
                             (:module "players" :serial t
                              :components ((:file "random")
                                           (:file "random-ii")))))))