X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=wolf;a=blobdiff_plain;f=src%2Fmain%2Fstyle-checker.asd;fp=src%2Fmain%2Fstyle-checker.asd;h=f5bc95d3fda5eaa44bf9f3653b5a7747babc8c1a;hp=3ed785e2a1d54431d26fb36cbf26e0488e0340d3;hb=88cc07a6e633f2e8921f47f935bf2428154369d6;hpb=fb2b62902f65524fab0e86a3555b0071a0983e02 diff --git a/src/main/style-checker.asd b/src/main/style-checker.asd index 3ed785e..f5bc95d 100644 --- a/src/main/style-checker.asd +++ b/src/main/style-checker.asd @@ -1,8 +1,20 @@ +; The systems are split up into two because travis will run more smoothly +; if we use a custom built sbcl that has all the deps pre-loaded since +; we are sure those will work just fine :) +; +; You should link to this file in your systems directory, or however you +; handle your asdf configurations. Then just (asdf:load-system :clnl) +; +; There's probably a better way, but I don't know it + +(asdf:defsystem style-checker.internal + :serial t + :components ((:file "package") (:file "syntax-checker"))) + (asdf:defsystem style-checker :name "Style Checker" :version "0.1" :maintainer "Frank Duncan (frank@kank.com)" :author "Frank Duncan (frank@kank.com)" :serial t - :components ((:file "package") (:file "syntax-checker")) - :depends-on (:cl-ppcre)) + :depends-on (:cl-ppcre :style-checker.internal))