-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-ewkb.asd
30 lines (25 loc) · 1.07 KB
/
cl-ewkb.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
(defpackage :cl-ewkb-system
(:use :common-lisp :asdf))
(in-package :cl-ewkb-system)
(defsystem :cl-ewkb
:version "0.2"
:maintainer "Michael Filonenko <[email protected]>"
:author "Michael Filonenko <[email protected]>"
:licence "MIT"
:description "cl-ewkb is a geospatial library, based on cl-wkb, that implements the OGC Well-Known Binary geographic geometry data model with PostGIS 3d, 4d extensions, and provides WKB and EWKB encoding and decoding functionality. cl-wkb author is J.P. Larocue."
:depends-on (:ieee-floats :flexi-streams)
:components
((:module :cl-ewkb
:components ((:file "package")
(:file "ewkb" :depends-on ("package"))))
(:module :cl-wkb
:components ((:file "package")
(:file "wkb" :depends-on ("package"))))))
(defpackage :cl-ewkb-tests-system
(:use :common-lisp :asdf))
(in-package :cl-ewkb-tests-system)
(defsystem :cl-ewkb-tests
:depends-on (:cl-ewkb :postmodern)
:components
((:module :test
:components ((:file "tests")))))