-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathisol.asd
113 lines (111 loc) · 4.41 KB
/
isol.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
;;; Copyright (C) Mark Fedurin, 2011-2015.
;;; ;;; This file is part of ISoL.
;;;
;;; ISoL is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation, either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; ISoL is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with ISoL. If not, see <http://www.gnu.org/licenses/>.
(defsystem :isol
:description "Just another roguelike RPG."
:author "Mark Fedurin <[email protected]>"
:license "GPL v3"
:version (:read-file-form "version.lisp-expr")
:depends-on (:sdl2
:sdl2kit
:glkit
:cl-opengl
:opticl
:cl-cairo2
:cl-store
:alexandria
:iterate
:anaphora
:let-plus
:hive-task)
:in-order-to ((test-op (load-op :isol/tests)))
:perform (test-op (op component)
(asdf/package:symbol-call :fiveam :run! :isol.tests))
:pathname "src/"
:serial t
:components ((:file "packages")
(:file "utilities")
(:module "shaders"
:components ((:file "shaders")))
(:module "engine"
:components ((:file "contexts")
(:file "resources")
(:file "graphics"
:depends-on ("contexts"
"resources"))
(:file "input"
:depends-on ("contexts"))
(:file "ui"
:depends-on ("graphics"
"input"))
(:file "scenes"
:depends-on ("ui"))
(:file "entities"
:depends-on ("contexts"))
(:file "items"
:depends-on ("entities"))
(:file "creatures"
:depends-on ("items"))
(:file "map"
:depends-on ("creatures"))
(:file "items-generation"
:depends-on ("map"))
(:file "creatures-generation"
:depends-on ("items-generation"))
(:file "map-generation"
:depends-on ("creatures-generation"))
(:file "world"
:depends-on ("map-generation"))
(:file "game"
:depends-on ("scenes"
"world"))))
;; ----------------
#+nil
(:module "game"
:serial t
:components ((:file "world")
(:file "characters")
(:file "scenes")
(:file "controls")))
;; ----------------
#+nil
(:file "isol")))
(defsystem :isol/tests
:description "Set of unit-tests for ISoL."
:author "Mark Fedurin <[email protected]>"
:license "GPL v3"
:version (:read-file-form "version.lisp-expr")
:depends-on (:fiveam
:isol)
:pathname "tests/"
:serial t
:components ((:file "packages")
(:file "suites")
(:file "utilities")
(:file "contexts-tests"
:depends-on ("utilities"
"suites"))
(:file "map-tests"
:depends-on ("utilities"
"suites"))
(:file "player-tests"
:depends-on ("utilities"
"suites"))
(:file "graphics-tests"
:depends-on ("utilities"
"suites"))
(:file "game-tests"
:depends-on ("utilities"
"suites"))))