|
Revision 2554, 0.5 kB
(checked in by ksprotte, 11 months ago)
|
added cl-store
|
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
(in-package :sysdef-user) |
|---|
| 2 |
|
|---|
| 3 |
(define-system :CL-STORE (cl-store-system ) |
|---|
| 4 |
(:author "Sean Ross <sross@common-lisp.net>") |
|---|
| 5 |
(:version 0 8 3) |
|---|
| 6 |
(:documentation "Portable CL Package to serialize data") |
|---|
| 7 |
(:licence "MIT") |
|---|
| 8 |
(:components "package" "utils" |
|---|
| 9 |
#+(or abcl (and clisp (not mop))) "mop" |
|---|
| 10 |
"backends" "plumbing" "circularities" "default-backend" |
|---|
| 11 |
("custom" non-required-file)) |
|---|
| 12 |
(:pathname #.(directory-namestring *compile-file-truename*)) |
|---|
| 13 |
(:needs (sysdef::test-action :rt))) |
|---|