forked from quil-lang/quilc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quilc.asd
45 lines (44 loc) · 1.44 KB
/
quilc.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
;;;; quilc.asd
;;;;
;;;; Author: Eric Peterson
(asdf:defsystem #:quilc
:description "A CLI front-end for the Quil compiler"
:author "Eric Peterson <[email protected]>"
:version (:read-file-form "VERSION.txt")
:license "Apache License 2.0 (See LICENSE.txt)"
:pathname "app/src/"
:depends-on (#:cl-ppcre
#:split-sequence
#:command-line-arguments
#:yason
(:version #:magicl/core "0.9.0")
#:magicl/ext-lapack
#:cl-quil
#:cl-quil/chip-library
#:cl-quil-benchmarking
#:uiop
#:bordeaux-threads
#:cl-syslog
#:rpcq
#:drakma
#:trivial-features ; for portable *features*
#:alexandria
#:swank
)
:in-order-to ((asdf:test-op (asdf:test-op #:quilc-tests)))
:around-compile (lambda (compile)
(let (#+sbcl(sb-ext:*derive-function-types* t))
(funcall compile)))
:serial t
:components ((:file "package")
(:file "globals")
(:file "versions")
#+sbcl
(:file "impl/sbcl")
#+clozure
(:file "impl/clozure")
(:file "chip-cache")
(:file "rpc-server")
(:file "printers")
(:file "options")
(:file "entry-point")))