This repository was archived by the owner on Sep 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcoalton.asd
48 lines (46 loc) · 1.54 KB
/
coalton.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
48
;;;; coalton.asd
(asdf:defsystem #:coalton
:description "A dialect of ML in Common Lisp."
:author "Robert Smith <[email protected]>"
:license "MIT"
:depends-on (#:alexandria
#:global-vars
#:trivial-garbage
#:optima
#:abstract-classes
#:singleton-classes)
:in-order-to ((asdf:test-op (asdf:test-op #:coalton/tests)))
:pathname "src/"
:serial t
:components ((:file "package")
(:file "utilities")
(:file "global-lexical")
(:file "node")
(:file "types")
(:file "parse-type")
(:file "parse-value")
(:file "global-environment")
(:file "early-types")
(:file "type-variables")
(:file "type-errors")
(:file "unify")
(:file "hindley-milner")
(:file "free-variables")
(:file "sort-letrec")
(:file "compile-value")
(:file "toplevel-declare")
(:file "toplevel-define-type")
(:file "toplevel-define")
(:file "coalton")
(:file "faux-macros")
(:file "impl-debug-routines")
(:file "library")))
(asdf:defsystem #:coalton/tests
:description "Tests for COALTON."
:author "Robert Smith <[email protected]>"
:license "MIT"
:depends-on (#:coalton #:fiasco)
:perform (asdf:test-op (o s) nil)
:pathname "tests/"
:serial t
:components ((:file "package")))