-
Notifications
You must be signed in to change notification settings - Fork 6
/
oclcl.asd
47 lines (45 loc) · 1.64 KB
/
oclcl.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#|
This file is a part of oclcl project.
Copyright (c) 2012 Masayuki Takagi (kamonama@gmail.com)
2017 gos-k (mag4.elan@gmail.com)
|#
;;;
;;; oclcl system definition
;;;
(defsystem "oclcl"
:version "0.1"
:author "gos-k"
:license "LLGPL"
:depends-on ("cffi" "alexandria" "external-program" "osicat"
"cl-pattern" "split-sequence" "cl-reexport" "cl-ppcre"
"lisp-namespace")
:components ((:module "src"
:serial t
:components
((:module "lang"
:serial t
:components
((:file "util")
(:file "data")
(:file "type")
(:file "syntax")
(:file "environment")
(:file "built-in")
(:file "program")
(:file "compiler/compile-data")
(:file "compiler/compile-type")
(:file "compiler/type-of-expression")
(:file "compiler/compile-expression")
(:file "compiler/compile-statement")
(:file "compiler/compile-program")
(:file "lang")))
(:module "api"
:serial t
:components
((:file "defkernel")
(:file "epilogue")
(:file "api")))
(:file "oclcl"))))
:description "oclcl is a library S-expression to OpenCL C."
;; :long-description #.(read-file-string (subpathname *load-pathname* "README.markdown"))
:in-order-to ((test-op (load-op "oclcl-test"))))