X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2Fclnl.asd;h=c3ec27e3af697586c8e6a8a167010ce573162e06;hb=807df6b;hp=b3fa09ff1a5badbcdbc990a5bc5a21dab4966f02;hpb=dc93f45662d4336c8b14d9ecd944b7bfb946fd0e;p=clnl diff --git a/src/main/clnl.asd b/src/main/clnl.asd index b3fa09f..c3ec27e 100644 --- a/src/main/clnl.asd +++ b/src/main/clnl.asd @@ -1,15 +1,22 @@ -; 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" - :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 "base") + (:file "model") + (:file "lex") + (:file "parse") + (:file "code-parse") + (:file "nvm/base") + (:file "nvm/utils") + (:file "nvm/agent") + (:file "nvm/nvm") + (:file "nvm/topology") + (:file "transpile") + (:file "random") + (:file "interface") + (:file "cli") + (:file "main")) + :depends-on #-travis(:cl-ppcre :mt19937 :cl-opengl :cl-glut :cl-charms :ieee-floats :strictmath) #+travis nil)