summaryrefslogtreecommitdiff
path: root/opencl.asd
diff options
context:
space:
mode:
Diffstat (limited to 'opencl.asd')
-rw-r--r--opencl.asd28
1 files changed, 28 insertions, 0 deletions
diff --git a/opencl.asd b/opencl.asd
new file mode 100644
index 0000000..e8bf214
--- /dev/null
+++ b/opencl.asd
@@ -0,0 +1,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")))