-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathradiance-core.asd
57 lines (57 loc) · 1.95 KB
/
radiance-core.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
46
47
48
49
50
51
52
53
54
55
56
57
(asdf:defsystem radiance-core
:class "modularize:virtual-module"
:defsystem-depends-on (:modularize :deploy)
:module-name "RADIANCE-CORE"
:version "2.2.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "Core component of Radiance, an extensible web application environment."
:homepage "https://github.com/Shirakumo/radiance"
:build-operation "deploy-op"
:build-pathname
#+linux "radiance.run"
#+darwin "radiance.app"
#+(or windows win32) "radiance"
#-(or linux darwin win32 windows) "radiance.o"
:entry-point "org.shirakumo.radiance.core::startup-binary"
:serial T
:components ((:file "module")
(:file "toolkit")
(:file "conditions")
(:file "documentable")
(:file "environment")
(:file "interfaces")
(:file "modules")
(:file "uri")
(:file "resource")
(:file "routing")
(:file "dispatch")
(:file "request")
(:file "options")
(:file "page")
(:file "api")
(:file "interface-components")
(:file "standard-interfaces")
(:file "handle")
(:file "defaults")
(:file "migration")
(:file "init")
(:file "version-upgrades")
(:file "deploy")
(:file "documentation"))
:depends-on (:modularize-hooks
:modularize-interfaces
:ubiquitous-concurrent
:trivial-indent
:cl-ppcre
:trivial-mimes
:local-time
:lambda-fiddle
:form-fiddle
:bordeaux-threads
:documentation-utils
:babel
:puri
:closer-mop)
:in-order-to ((asdf:test-op (asdf:test-op :radiance-test))))