-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-functional.asd
22 lines (20 loc) · 918 Bytes
/
cl-functional.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(in-package :cl-user)
(defpackage cl-functional-asd (:use :cl :asdf))
(in-package :cl-functional-asd)
(defsystem cl-functional
:version "0.0.2"
:description "cl-functional gives some useful functions and macros inspired in
other languages facilities that improves the code writing, with
a functional point of view."
:author "Di Giorgi Hernan Ezequiel <contact@playnu.com.ar>"
:license "Simplified BSD License"
:components ((:module "src"
:components
((:file "packages")
(:file "utils")
(:file "tco")
(:file "data-structures")
(:file "cl-functional"))))
:in-order-to ((test-op (test-op cl-functional-test))))
(let ((project-dir (asdf:system-source-directory :cl-functional)))
(pushnew project-dir asdf:*central-registry*))