-
Notifications
You must be signed in to change notification settings - Fork 0
/
spacelang.asd
32 lines (30 loc) · 872 Bytes
/
spacelang.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
;;;; spacelang.asd
(asdf:defsystem #:spacelang
:description "Spacelang is a stack programming language."
:author "Vlad P. Luchian <cstmlcodes@gmail.com>"
:license "Specify license here"
:version "0.0.1"
:serial t
:depends-on (:alexandria
:str
:fiveam
:cl-punch
:smug
:bt-semaphore)
:components ((:file "package")
(:file "parser")
(:file "spacelang")))
(asdf:defsystem #:spacelang/test
:description "Test suite for spacelang."
:author "Vlad P. Luchian <cstmlcodes@gmail.com>"
:license "Specify license here"
:version "0.0.1"
:serial t
:depends-on (:alexandria
:fiveam
:cl-punch
:for
:spacelang)
:pathname "test/"
:components ((:file "package")
(:file "test")))