forked from m8nware/ann
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ann.asd
23 lines (22 loc) · 778 Bytes
/
ann.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(in-package #:asdf-user)
(defsystem #:ann
:version (:read-file-line "version.txt" :at 0)
:description "A simple text annotation assistant."
:author "Vsevolod Dyomkin <[email protected]>"
:maintainer "Vsevolod Dyomkin <[email protected]>"
:depends-on (#:rutilsx #:cl-ppcre #:hunchentoot #:cl-who #:cl-fad
#:yason #:cl-yaml #:cl-json
#+dev #:should-test)
:serial t
:components
((:module "src" :serial t
:components (#+dev (:file "../hunch")
(:file "packages")
(:file "ann")
(:module "formats" :serial t
:components ((:file "bsf")))
(:file "diff")
(:file "site")))
#+dev
(:module "test" :serial t
:components ())))