forked from rigetti/libquil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibquil.asd
24 lines (23 loc) · 817 Bytes
/
libquil.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
;;;; libquil.asd
(asdf:defsystem #:libquil
:description "Shared library API for Quilc and QVM"
:author "Mark Skilbeck <[email protected]>"
:version (:read-file-form "VERSION.txt")
:license "Apache License 2.0 (See LICENSE.txt)"
:pathname "src/"
:depends-on (#:cffi
#:bordeaux-threads
#:cl-quil
#:sbcl-librarian)
:serial t
:components ((:file "package")
(:file "libquil")
(:module "quilc"
:serial t
:components ((:file "quilc-imports")
(:file "compile")
(:file "api")))
(:module "qvm"
:serial t
:components ((:file "qvm-app-imports")
(:file "api")))))