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 41 42
|
;;; -*- Mode: LISP; Syntax: Common-Lisp; Package: User; Base: 10 -*-
(in-package :common-lisp-user)
(mk:defsystem clio
:depends-on ( clue )
:source-pathname "cl-library:clio;"
:components
((:file "clio")
(:file "defgeneric")
(:module clio-precom-load
:load-form (hack-precom "cl-library:clio;" :load)
:compile-form t)
(:file "ol-defs")
(:file "utility")
(:file "core-mixins")
(:file "gravity")
(:file "ol-images")
(:file "buttons")
(:file "form")
(:file "table")
(:file "choices")
(:file "scroller")
(:file "slider")
(:file "scroll-frame")
(:file "mchoices")
(:file "menu")
(:file "psheet")
(:file "command")
(:file "confirm")
(:file "buffer")
(:file "text-command")
(:file "display-text")
(:file "edit-text")
(:file "display-imag")
(:file "dlog-button")
(:module clio-precom-com
:load-form t
:compile-only t
:compile-form (hack-precom "cl-library:clio;" :compile))))
|