summaryrefslogtreecommitdiff
path: root/opencl.asd
blob: e8bf2144cc8632631b0656a4ce3cae877c6ee637 (plain)
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
(asdf:defsystem #:opencl
  :description "Bindings for opencl"
  :author ("Thomas Guillermo Albers Raviola")
  :license  "GPL-3.0"
  :version "0.1.0"
  :serial t
  :depends-on (:cffi
               :alexandria)
  :pathname "src"
  :components ((:file "package")
               (:file "types")
               (:file "constants")
               (:file "bindings")
               (:file "opencl")
               (:file "deprecated")
               (:file "platform")
               (:file "device")
               (:file "context")
               (:file "command-queue")
               (:file "memory")
               (:file "sampler")
               (:file "program")
               (:file "kernel")
               (:file "event")
               (:file "profiling")
               (:file "flush")
               (:file "enqueue")
               (:file "extensions")))