-
Notifications
You must be signed in to change notification settings - Fork 24
/
cl-cuda-interop.asd
31 lines (30 loc) · 1.05 KB
/
cl-cuda-interop.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
25
26
27
28
29
30
31
#|
This file is a part of cl-cuda project.
Copyright (c) 2012 Masayuki Takagi (kamonama@gmail.com)
|#
(defsystem "cl-cuda-interop"
:version "0.1"
:author "Masayuki Takagi"
:license "MIT"
:depends-on (:cl-cuda :cl-opengl :cl-glu :cl-glut)
:components ((:module "interop/src"
:serial t
:components
((:module "driver-api"
:serial t
:components
((:file "package")
(:file "type")
(:file "enum")
(:file "function")))
(:module "api"
:serial t
:components
((:file "memory")
(:file "context")
(:file "defkernel")
(:file "api")))
(:file "cl-cuda-interop"))))
:description "Cl-cuda with OpenGL interoperability."
;; :long-description #.(read-file-string (subpathname *load-pathname* "README.markdown"))
:in-order-to ((test-op (test-op "cl-cuda-interop-test"))))