-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopen-blackfire.asd
70 lines (64 loc) · 2.41 KB
/
open-blackfire.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
58
59
60
61
62
63
64
65
66
67
68
69
70
;; Copyright (c) 2022, "the Phoeron" Colin J.E. Lupton <thephoeron@protonmail.com>
;; Released under the MIT License. See open-blackfire/LICENSE for more information.
(in-package :cl-user)
(defpackage "OPEN-BLACKFIRE/ASDF"
(:nicknames blackfire/asdf)
(:use cl asdf uiop))
(in-package :open-blackfire/asdf)
(defsystem open-blackfire
:name "OPEN-BLACKFIRE"
:description "Vendor-agnostic quantum computing framework for Common Lisp."
:author "\"the Phoeron\" Colin J.E. Lupton"
:source-control "https://github.com/thephoeron/open-blackfire/"
:bug-tracker "https://github.com/thephoeron/open-blackfire/issues/"
:mailto "thephoeron@protonmail.com"
:version (:read-file-form "VERSION")
:license "MIT"
:depends-on (closer-mop
protocol-phi
alexandria
serapeum
dexador
;quri
uri-template
yason
json-mop
; json-schema
cl-strings
simple-config)
:serial t
:components ((:module quantum-cloud
:components ((:module ibm-quantum
:serial t
:components ((:file "package")
(:file "objects")
(:file "request-methods")))))
(:file "blackfire"))
:perform (load-op :after (op c)
(provide :blackfire)
(pushnew :blackfire *features*))
:in-order-to ((test-op (test-op "open-blackfire/test"))))
(defsystem open-blackfire/docs
:name "OPEN-BLACKFIRE/DOCS"
:description "Documentation for OPEN-BLACKFIRE."
:author "\"the Phoeron\" Colin J.E. Lupton"
:source-control "https://github.com/thephoeron/open-blackfire/"
:bug-tracker "https://github.com/thephoeron/open-blackfire/issues/"
:mailto "thephoeron@protonmail.com"
:version (:read-file-form "VERSION")
:license "MIT"
:depends-on (open-blackfire)
:serial t
:components ())
(defsystem open-blackfire/test
:name "OPEN-BLACKFIRE/TEST"
:description "Test-bench for OPEN-BLACKFIRE."
:author "\"the Phoeron\" Colin J.E. Lupton"
:source-control "https://github.com/thephoeron/open-blackfire/"
:bug-tracker "https://github.com/thephoeron/open-blackfire/issues/"
:mailto "thephoeron@protonmail.com"
:version (:read-file-form "VERSION")
:license "MIT"
:depends-on (open-blackfire)
:serial t
:components ())