-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbops.asd
More file actions
18 lines (18 loc) · 699 Bytes
/
bops.asd
File metadata and controls
18 lines (18 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defsystem "bops"
:description "Binary operations in Common Lisp"
:version "0.0.1"
:author "Guillaume MICHEL"
:mailto "contact@orilla.fr"
:homepage "http://orilla.fr"
:license "MIT license (see COPYING)"
:depends-on ()
:in-order-to ((test-op (test-op "bops-tests")))
:components ((:static-file "COPYING")
(:static-file "README.md")
(:module "src"
:serial t
:components ((:file "package")
(:file "vops")
(:file "bops")
(:file "dense")
(:file "dense2")))))