forked from thephoeron/LLTHW
-
Notifications
You must be signed in to change notification settings - Fork 4
/
llthw.asd
40 lines (33 loc) · 1.13 KB
/
llthw.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
28
29
30
31
32
33
34
35
36
37
38
39
40
;;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: LLTHW; Base: 10 -*-
;;;; file: llthw.asd
;;;; Copyright (c) 2012--2015 "the Phoeron" Colin J.E. Lupton <//thephoeron.com>
;;;; See LICENSE for additional information.
(in-package :cl-user)
(defpackage llthw-asd
(:use :cl :asdf)
(:export #:*llthw-version*))
(in-package :llthw-asd)
(defparameter *llthw-version* "0.2.4")
(defsystem llthw
:serial t
:license "MIT"
:version #.*llthw-version*
:author "\"the Phoeron\" Colin J.E. Lupton <[email protected]>"
:description "Learn Lisp The Hard Way, web application and complete book text."
:depends-on (:hunchentoot
:cl-who
:cl-css
:parenscript
:split-sequence
:3bmd
:3bmd-ext-code-blocks
:3bmd-ext-definition-lists
:3bmd-ext-tables)
:components ((:file "packages")
(:file "config")
(:file "utils")
(:file "scripts")
(:file "templates")
(:file "handlers")
(:file "llthw")))
;; EOF