f5bc95d3fda5eaa44bf9f3653b5a7747babc8c1a
[wolf] / src / main / style-checker.asd
1 ; The systems are split up into two because travis will run more smoothly
2 ; if we use a custom built sbcl that has all the deps pre-loaded since
3 ; we are sure those will work just fine :)
4 ;
5 ; You should link to this file in your systems directory, or however you
6 ; handle your asdf configurations.  Then just (asdf:load-system :clnl)
7 ;
8 ; There's probably a better way, but I don't know it
9
10 (asdf:defsystem style-checker.internal
11  :serial t
12  :components ((:file "package") (:file "syntax-checker")))
13
14 (asdf:defsystem style-checker
15  :name "Style Checker"
16  :version "0.1"
17  :maintainer "Frank Duncan (frank@kank.com)"
18  :author "Frank Duncan (frank@kank.com)"
19  :serial t
20  :depends-on (:cl-ppcre :style-checker.internal))