X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=clnl;a=blobdiff_plain;f=src%2Fmain%2Fclnl.asd;h=29e33cc197e89d48a866a768604e65a45b719110;hp=659577f703dfa62bc9b9b9dca8284c0df5a6527a;hb=34a7f8e17a5b27d1b15b297f999e13a93900408b;hpb=213ed30b45140af3f34b7e003aa60394178d524c diff --git a/src/main/clnl.asd b/src/main/clnl.asd index 659577f..29e33cc 100644 --- a/src/main/clnl.asd +++ b/src/main/clnl.asd @@ -1,15 +1,16 @@ -; 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 clnl - :name "Experiment" - :version "0.0.0" - :maintainer "Frank Duncan (frank@kank.com)" - :author "Frank Duncan (frank@kank.com)" - :depends-on (:cl-ppcre :mt19937 :cl-opengl :cl-glut :cl-charms :clnl.internal)) + :name "Experiment" + :version "0.0.0" + :maintainer "Frank Duncan (frank@kank.com)" + :author "Frank Duncan (frank@kank.com)" + :components ((:file "package") + (:file "model") + (:file "lex") + (:file "parse") + (:file "nvm") + (:file "transpile") + (:file "random") + (:file "interface") + (:file "cli") + (:file "main")) + :depends-on #-travis (:cl-ppcre :mt19937 :cl-opengl :cl-glut :cl-charms :strictmath) #+travis nil)