From 6fe823a614279cceb2d48507bd8e93b0efd87f94 Mon Sep 17 00:00:00 2001 From: Thomas Albers Date: Sat, 4 Mar 2023 22:47:28 +0100 Subject: Initial commit --- opencl.asd | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 opencl.asd (limited to 'opencl.asd') 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"))) -- cgit v1.2.3