forked from quil-lang/quilc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboondoggle.asd
More file actions
24 lines (23 loc) · 758 Bytes
/
boondoggle.asd
File metadata and controls
24 lines (23 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;;;; boondoggle.asd
;;;;
;;;; Author: Eric Peterson
(asdf:defsystem #:boondoggle
:description "A quilc/QVM/QPU integration tester."
:author "Eric Peterson <eric@rigetti.com>"
:version (:read-file-form "boondoggle/VERSION.txt")
:depends-on (#:cl-quil
#:command-line-arguments
#:drakma
#:uiop
)
:around-compile (lambda (compile)
(let (#+sbcl(sb-ext:*derive-function-types* t))
(funcall compile)))
:pathname "boondoggle/src/"
:serial t
:components ((:file "package")
(:file "options")
(:file "producers")
(:file "consumers")
(:file "processors")
(:file "pipeline")))