forked from Mon-Ouie/blocky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blocky.asd
45 lines (39 loc) · 1.57 KB
/
blocky.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;;; -*- Mode: Lisp; -*-
;; ASDF Manual: http://constantly.at/lisp/asdf/
(defpackage :blocky-asd)
(in-package :blocky-asd)
(asdf:defsystem blocky
:name "blocky"
:version "1.01"
:maintainer "David T O'Toole <dto@blocky.io>"
:author "David T O'Toole <dto@blocky.io>"
:license "General Public License (GPL) Version 3"
:description "BLOCKY is a visual programming language for Common Lisp."
:serial t
:depends-on (:lispbuilder-sdl
:lispbuilder-sdl-image
:lispbuilder-sdl-ttf
:lispbuilder-sdl-mixer
:uuid
:cl-fad
:cl-opengl)
:components ((:file "blocky")
(:file "rgb" :depends-on ("blocky"))
(:file "keys" :depends-on ("blocky"))
(:file "math" :depends-on ("blocky"))
(:file "logic" :depends-on ("blocky"))
(:file "prototypes" :depends-on ("blocky"))
(:file "quadtree" :depends-on ("blocky"))
(:file "console" :depends-on ("prototypes" "quadtree" "rgb" "keys" "math" "logic"))
(:file "blocks" :depends-on ("console"))
(:file "text" :depends-on ("blocks"))
(:file "phrase" :depends-on ("blocks"))
(:file "entry" :depends-on ("phrase" "text"))
(:file "words" :depends-on ("entry"))
(:file "halo" :depends-on ("phrase"))
(:file "sidebar" :depends-on ("entry"))
(:file "minibuffer" :depends-on ("sidebar"))
(:file "buffers" :depends-on ("entry" "text"))))
;; (:file "syntax" :depends-on ("blocks"))))
; (:file "trees" :depends-on ("phrase"))
; (:file "program" :depends-on ("blocks"))