-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplot-window.asd
27 lines (25 loc) · 899 Bytes
/
plot-window.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
; -*- mode:common-lisp -*-
#-asdf3 (error "Plot-window requires ASDF3.")
(defsystem plot-window
:licence "Apache 2.0"
:serial t
:depends-on (#:uiop
#:alexandria
#:log4cl
#:optima
#:hunchentoot ; web server
#:cl-who ; html generation
#:cl-interpol ; also for html generation
#:named-readtables ; so we can manage cl-interpol
#:parenscript ; javascript via sexprs
#:css-lite
#:clws ; web sockets
#:cl-json)
:components ((:file "packages")
(:file "ps-utilities")
(:file "ps-modules")
(:file "dw")
(:file "utilities")
(:file "log4cl-memory-appender")
(:file "servers")
(:file "main")))