-
Notifications
You must be signed in to change notification settings - Fork 12
/
hemlock.qt.asd
26 lines (24 loc) · 963 Bytes
/
hemlock.qt.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
;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
(defparameter *hemlock-base-directory*
(make-pathname :name nil :type nil :version nil
:defaults (parse-namestring *load-truename*)))
(asdf:defsystem :hemlock.qt
:pathname #.(make-pathname
:directory
(pathname-directory *hemlock-base-directory*)
:defaults *hemlock-base-directory*)
:depends-on (:hemlock.base :qt :qt-repl)
:components
((:module qt-1
:pathname #.(merge-pathnames
(make-pathname
:directory '(:relative "src"))
*hemlock-base-directory*)
:serial t
:components
((:file "qt-package")
(:file "qt")
(:file "browser")
(:file "qtconnections")
(:file "sugiyama")
(:file "graphics")))))