-
Notifications
You must be signed in to change notification settings - Fork 1
/
folio2-as.asd
23 lines (21 loc) · 886 Bytes
/
folio2-as.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;;; ***********************************************************************
;;;;
;;;; Name: folio2-as.asd
;;;; Project: folio2 - Functional idioms for Common Lisp
;;;; Purpose: folio2-as: an extensible type-conversion utility
;;;; Author: mikel evins
;;;; Copyright: 2015 by mikel evins
;;;;
;;;; ***********************************************************************
;;; system
(defsystem "folio2-as"
:serial t
:description "uniform tools for converting values from one type to another"
:author "mikel evins <[email protected]>"
:license "Lisp Lesser GNU Public License"
:components ((:module "src"
:serial t
:components ((:file "as-package")
(:file "as-functions"))))
:in-order-to ((test-op (test-op "folio-as-tests"))))
;;; (asdf:load-system :folio2-as)