summaryrefslogtreecommitdiff
path: root/opencl.asd
diff options
context:
space:
mode:
authorThomas Albers <thomas@thomaslabs.org>2023-03-04 22:47:28 +0100
committerThomas Albers <thomas@thomaslabs.org>2023-03-04 22:47:28 +0100
commit6fe823a614279cceb2d48507bd8e93b0efd87f94 (patch)
tree579e3c5db456667ce2aeda94f909703513179ce1 /opencl.asd
Initial commit
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")))