-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcla.asd
29 lines (21 loc) · 795 Bytes
/
cla.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
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
;;; Package Name : cla
;;; File Name : cla.asd
;;; Description : Auth system for Common Lisp web applications.
;;; Author : Abhijit Rao (mostly based on earlier work by Prashant Acharekar and Sourabh Nanda)
;;; Date Created :
;;; Date Last Modified :
;;; See the LICENSE file for licensing information.
(asdf:defsystem :cla
:version "0.0.1"
:author "Abhijit Rao"
:maintainer "Abhijit Rao"
:depends-on (:clsql :ironclad :hunchentoot :cl-base64 :babel :date-calc :pooler)
:serial t
:components ((:file "packages")
(:file "conditions")
(:file "utils")
(:file "db")
(:file "encrypt")
(:file "cookie")
(:file "cla")))