X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2Fclnl.asd;h=476728e923b9ae6988bb9dcddb921d462e750348;hb=3abea7023574532423fa24d5f97154db474b50a0;hp=91fdf1eb4ec7cc063ea9f5b3c384c4b16cecfbbc;hpb=43bbc274299e58d2f4a6e0b05e5366ca5e2900ae;p=clnl diff --git a/src/main/clnl.asd b/src/main/clnl.asd index 91fdf1e..476728e 100644 --- a/src/main/clnl.asd +++ b/src/main/clnl.asd @@ -1,26 +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 clnl.internal - :serial t - :components ((:file "package") - (:file "lex") - (:file "parse") - (:file "nvm") - (:file "transpile") - (:file "random") - (:file "interface") - (: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 :cl-opengl :cl-glut :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 "code-parse") + (:file "nvm/base") + (:file "nvm/utils") + (: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)