summaryrefslogtreecommitdiff
path: root/next/next.asd
blob: 9e606e9ff4b8044db0f9733b842fa77ff4ad1344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; next.asd
(defsystem :next
  :serial t
  :depends-on (:cl-strings :cl-string-match)
  :components ((:file "lisp/package")
	       (:file "lisp/qt")
	       (:file "lisp/keymap")
	       (:file "lisp/minibuffer")
	       (:file "lisp/buffer")
	       (:file "lisp/document-mode")
	       (:file "lisp/completion")
	       (:file "lisp/base")))