-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmaxima-client.asd
45 lines (45 loc) · 2.06 KB
/
maxima-client.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(defsystem maxima-client
:name "maxima-client"
:author "Elias Martenson <[email protected]>"
:license "BSD"
:description "Maxima CLIM client"
:depends-on (:alexandria
:mcclim
:log4cl
:trivial-gray-streams
:trivial-arguments
:lambda-fiddle
:cl-ppcre
:split-sequence
:clim-listener
:maxima)
:components ((:module src
:serial t
:components ((:file "package")
(:file "workbench")
(:file "util")
(:file "renderer-util")
(:file "wrap")
(:file "markup")
(:file "renderer")
(:file "disp")
(:file "popup")
(:file "output")
(:file "queries")
(:file "info")
(:file "info-new")
(:file "reflect")
(:file "maxima-syntax")
(:file "character-picker")
(:file "watcher")
(:file "notes")
(:file "canvas")
(:file "cmdline")
(:file "maxima-history")
(:file "maxima-plot")
(:file "plot2d")
(:file "algebra-cmd")
(:file "matrix-edit")
(:file "matrix-cmd"))))
:perform (load-op :after (o c)
(load (asdf:system-relative-pathname (asdf:find-system :maxima) "../lisp-utils/defsystem.lisp"))))