Skip to content
Snippets Groups Projects
Commit 3e048d49 authored by Daniel Kochmański's avatar Daniel Kochmański
Browse files

asd: coerce clim-standalone system definition from sys/sysdcl.lisp

parent e72e3454
No related branches found
No related tags found
No related merge requests found
...@@ -6,8 +6,97 @@ ...@@ -6,8 +6,97 @@
:license "BSD-4-Clause" :license "BSD-4-Clause"
:depends-on (#:franz-clim2/core)) :depends-on (#:franz-clim2/core))
;;; based on `clim-standalone' in sys/sysdcl.lisp
(defsystem #:franz-clim2/core (defsystem #:franz-clim2/core
:description "Core functionality (doesn't contain backends).") :description "Core functionality (doesn't contain backends)."
:components ((:file "utils/packages")
(:file "utils/defun-utilities")
(:module "clim"
:components
(#+(or) "Basic tools"
(:file "gestures")
(:file "defprotocol")
(:file "stream-defprotocols")
(:file "defresource")
(:file "temp-strings")
(:file "clim-defs")
#+(or) "Definitions and protocols"
(:file "stream-class-defs")
(:file "interactive-defs")
(:file "cursor")
(:file "view-defs")
(:file "input-defs")
(:file "input-protocol")
(:file "output-protocol")
#+(or) "Output recording"
(:file "recording-defs")
(:file "formatting-output-defs")
(:file "recording-protocol")
(:file "text-recording")
(:file "graphics-recording")
(:file "design-recording")
#+(or) "Input editing"
(:file "interactive-protocol")
(:file "input-editor-commands")
#+(and allegro (not acl86win32)) (:file "japanese-input-editor")
#+(or) "Incremental redisplay"
(:file "incremental-redisplay")
#+(or) "Windows"
(:file "coordinate-sorted-set")
(:file "r-tree")
(:file "window-stream")
(:file "pixmap-streams")
#+(or) "Presentation types"
(:file "ptypes1")
(:file "completer")
(:file "presentations")
(:file "translators")
(:file "histories")
(:file "ptypes2")
(:file "standard-types")
#+allegro (:file "excl-presentations")
#+(or) "Formatted output"
(:file "table-formatting")
(:file "graph-formatting")
(:file "surround-output")
(:file "text-formatting")
#+(or) "Pointer tracking"
(:file "tracking-pointer")
(:file "dragging-output")
#+(or) "Gadgets"
(:file "db-stream")
(:file "gadget-output")
#+(or) "Application building substrate"
(:file "accept")
(:file "present")
(:file "command")
(:file "command-processor")
(:file "basic-translators")
(:file "frames")
(:file "panes")
(:file "default-frame")
(:file "activities")
(:file "db-menu")
#+acl86win32 (:file "db-list")
#+acl86win32 (:file "db-text")
(:file "noting-progress")
(:file "menus")
(:file "accept-values")
(:file "drag-and-drop")
(:file "item-list-manager")
#+(or) "Bootstrap everything"
(:file "stream-trampolines")))))
(defsystem #:franz-clim2/postscript (defsystem #:franz-clim2/postscript
:description "Draw-only backend as defined in the specification.") :description "Draw-only backend as defined in the specification.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment