-
Notifications
You must be signed in to change notification settings - Fork 1
/
folio2-maps.asd
24 lines (22 loc) · 942 Bytes
/
folio2-maps.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
;;;; ***********************************************************************
;;;;
;;;; Name: folio2-maps.asd
;;;; Project: folio2 - Functional idioms for Common Lisp
;;;; Purpose: functional finite maps
;;;; Author: mikel evins
;;;; Copyright: 2015 by mikel evins
;;;;
;;;; ***********************************************************************
(defsystem "folio2-maps"
:serial t
:description "tools for working with finite maps"
:author "mikel evins <[email protected]>"
:license "Lisp Lesser GNU Public License"
:depends-on ("fset" "folio2-as" "folio2-make")
:components ((:module "src"
:serial t
:components ((:file "maps-package")
(:file "maps-types")
(:file "maps-functions"))))
:in-order-to ((test-op (test-op "folio-maps-tests"))))
;;; (asdf:load-system :folio2-maps)