OSDN Git Service

graphics: sdl2:rects freed after use
[rulp/rulp.git] / system.asd
1 ;;;; Ru*** roLeplay Playground virtual tabletop
2 ;;;; Copyright (C) 2022  Zull
3 ;;;;
4 ;;;; This program is free software: you can redistribute it and/or modify
5 ;;;; it under the terms of the GNU General Public License as published by
6 ;;;; the Free Software Foundation, either version 3 of the License, or
7 ;;;; (at your option) any later version.
8 ;;;;
9 ;;;; This program is distributed in the hope that it will be useful,
10 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ;;;; GNU General Public License for more details.
13 ;;;;
14 ;;;; You should have received a copy of the GNU General Public License
15 ;;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17 (asdf:defsystem "rulp"
18   :description "Ru*** roLeplay Playground: a digital table for roleplay games"
19   :version "0.0.1"
20   :author "Zull"
21   :licence "GPLv3"
22   :build-operation "program-op"
23   :build-pathname "rulp"
24   :entry-point "core:main"
25   ;; :depends-on ("sdl2" "sdl2-image" "sdl2-ttf" "cffi-libffi" "alexandria" "clingon" "cl-json")
26   :depends-on ("sdl2" "sdl2-image" "sdl2-ttf" "alexandria" "clingon" "cl-json")
27   :components ((:file "parameters")
28                (:module "layers"
29                 :serial t
30                 :depends-on ("parameters")
31                 :components ((:file "package")
32                              (:file "screens")
33                              (:file "planes")
34                              (:file "models")
35                              (:file "entities")))
36                (:module "graphics"
37                 :serial t
38                 :depends-on ("parameters" "layers")
39                 :components ((:file "package")
40                              (:file "text-rendering")
41                              (:file "render")
42                              (:file "menu")
43                              (:file "inputs")
44                              (:file "grid")
45                              (:file "view")))
46 ;               (:module "gui"
47 ;                :serial t
48 ;                :depends-on ("parameters")
49 ;                :components ((:file "package")
50 ;                             (:file "skeleton")))
51                (:file "package" :depends-on ("graphics"))
52                (:file "script" :depends-on ("graphics"))
53                (:file "data" :depends-on ("package" "parameters"))
54                (:file "core" :depends-on ("package" "parameters"))))