-
Notifications
You must be signed in to change notification settings - Fork 1
/
folio2.asd
36 lines (34 loc) · 1.24 KB
/
folio2.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
;;;; ***********************************************************************
;;;;
;;;; Name: folio2.asd
;;;; Project: folio2 - Functional idioms for Common Lisp
;;;; Purpose: folio2 umbrella system
;;;; Author: mikel evins
;;;; Copyright: 2015 by mikel evins
;;;;
;;;; ***********************************************************************
(defsystem "folio2"
:serial t
:description "the folio2 umbrella system"
:author "mikel evins <[email protected]>"
:license "Lisp Lesser GNU Public License"
:depends-on ("fset" "series" "alexandria"
"folio2-as"
"folio2-as-syntax"
"folio2-boxes"
"folio2-functions"
"folio2-functions-syntax"
"folio2-make"
"folio2-maps"
"folio2-maps-syntax"
"folio2-pairs"
"folio2-sequences"
"folio2-sequences-syntax"
"folio2-series"
"folio2-taps")
:components ((:module "src"
:serial t
:components ((:file "folio2-package")
(:file "version"))))
:in-order-to ((test-op (test-op "folio2-tests"))))
;;; (asdf:load-system :folio2)