Get working on Windows 8
[clnl] / src / main / clnl.internal.asd
1 ; The systems are split up into two because travis will run more smoothly
2 ; if we use a custom built sbcl that has all the deps pre-loaded since
3 ; we are sure those will work just fine :)
4 ;
5 ; You should link to this file in your systems directory, or however you
6 ; handle your asdf configurations.  Then just (asdf:load-system :clnl)
7 ;
8 ; There's probably a better way, but I don't know it
9
10 (asdf:defsystem clnl.internal
11   :serial t
12   :components ((:file "package")
13                (:file "lex")
14                (:file "parse")
15                (:file "nvm")
16                (:file "transpile")
17                (:file "random")
18                (:file "interface")
19                (:file "cli")
20                (:file "main")))