OSDN Git Service

graphics: sdl2:rects freed after use
[rulp/rulp.git] / rulp.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 "rulp.core:main"
25   :depends-on ("sdl2" "sdl2-image" "sdl2-ttf" "alexandria" "clingon" "cl-json")
26   :components ((:file "parameters")
27                (:module "layers"
28                 :serial t
29                 :depends-on ("parameters")
30                 :components ((:file "package")
31                              (:file "screens")
32                              (:file "planes")
33                              (:file "models")
34                              (:file "entities")))
35                (:module "graphics"
36                 :serial t
37                 :depends-on ("parameters" "layers")
38                 :components ((:file "package")
39                              (:file "text-rendering")
40                              (:file "render")
41                              (:file "menu")
42                              (:file "inputs")
43                              (:file "grid")
44                              (:file "view")))
45 ;               (:module "gui"
46 ;                :serial t
47 ;                :depends-on ("parameters")
48 ;                :components ((:file "package")
49 ;                             (:file "skeleton")))
50                (:file "package" :depends-on ("graphics"))
51                (:file "script" :depends-on ("graphics"))
52                (:file "data" :depends-on ("package" "parameters"))
53                (:file "core" :depends-on ("package" "parameters"))))