-
Notifications
You must be signed in to change notification settings - Fork 0
/
photon.asd
52 lines (51 loc) · 1.34 KB
/
photon.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
(in-package :cl-user)
(defpackage photon-asd
(:use :cl :asdf))
(in-package :photon-asd)
(defsystem photon
:version "1.0.0"
:author "Tomoki ABURATANI"
:license "MIT"
;; :email "aburatanitomoki@gmail.com"
:homepage "https://github.com/dbym4820/photon"
:depends-on (:ceramic
:clack
:clack-static-asset-middleware
:ningle
:uiop
:cl-fad
:alexandria
:dexador
:split-sequence
:cl-project
:usocket
:jonathan
:xmls)
:components ((:module "src"
:components
((:file "photon" :depends-on ("init" install ontology system-module launcher viewer gui))
(:file "init")
(:module "install"
:components
((:file "install")))
(:module "system-module"
:components
((:file "module")))
(:module "gui"
:components
((:file "gui" :depends-on ("server"))
(:file "server")))
(:module "ontology"
:components
((:file "ontology")
(:file "hozo" :depends-on ("ontology"))
(:file "owl" :depends-on ("ontology"))
(:file "rdf" :depends-on ("ontology"))))
(:module "launcher"
:components
((:file "launcher")))
(:module "viewer"
:components
((:file "viewer"))))))
:description "Ontology Based System Extenstion Framework"
:in-order-to ((test-op (test-op photon-test))))