X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2Fclnl.asd;h=e70faf0a1ffbddd00d22d84e7e02894512da213d;hb=a66006d87c4364f20442b02a03a7e65a6028407a;hp=a17f3ee048b7ac384ce0771f28245535aca2abca;hpb=01e2d9fdf7087c181c645abd15605a31a5b7e43c;p=clnl diff --git a/src/main/clnl.asd b/src/main/clnl.asd index a17f3ee..e70faf0 100644 --- a/src/main/clnl.asd +++ b/src/main/clnl.asd @@ -1,25 +1,30 @@ -; 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.internal - :serial t - :components ((:file "package") - (:file "lex") - (:file "parse") - (:file "nvm") - (:file "transpile") - (:file "random") - (:file "main"))) - (asdf:defsystem clnl - :name "Experiment" - :version "0.0.1" - :maintainer "Frank Duncan (frank@kank.com)" - :author "Frank Duncan (frank@kank.com)" - :depends-on (:cl-ppcre :mt19937 :clnl.internal)) + :name "Experiment" + :version "0.1.0" + :maintainer "Frank Duncan (frank@kank.com)" + :author "Frank Duncan (frank@kank.com)" + :components ((:file "package") + (:file "nvm/package") + (:file "base") + (:file "extensions") + (:file "model") + (:file "lex") + (:file "parse") + (:file "code-parse") + (:file "nvm/base") + (:file "nvm/utils") + (:file "nvm/agent") + (:file "nvm/nvm") + (:file "nvm/agentset") + (:file "nvm/controlflow") + (:file "nvm/inout") + (:file "nvm/math") + (:file "nvm/turtles") + (:file "nvm/world") + (:file "nvm/topology") + (:file "transpile") + (:file "random") + (:file "interface") + (:file "cli") + (:file "main")) + :depends-on #-travis(:cl-ppcre :mt19937 :cl-opengl :cl-glu :cl-glut :cl-charms :ieee-floats :strictmath) #+travis nil)