upd advent.lisp so it works
[lifp.git] / iflib.asd
1 ;; -*- mode:lisp -*-\r
2 ;;ASDF system definition for loading if-lib and LIFP user interface\r
3 ;;\r
4 ;;This file is a part of Lisp Interactive Fiction Project\r
5 ;;\r
6 ;;See license.txt for licensing information\r
7 \r
8 \r
9 (use-package :asdf)\r
10 \r
11 (defsystem iflib\r
12     :name "iflib"\r
13     :author "Timofei Shatrov <grue@mail.ru>"\r
14     :description "Interactive Fiction Lisp library"\r
15     :components\r
16     ((:file "console")\r
17      (:file "if" :depends-on ("console"))\r
18      (:file "iflib" :depends-on ("if" "console"))\r
19      (:file "verbs" :depends-on ("if" "iflib")))\r
20     :depends-on (:ltk :cl-fad))\r
21