-
Notifications
You must be signed in to change notification settings - Fork 1
/
cl-snake.asd
43 lines (41 loc) · 1.52 KB
/
cl-snake.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
;;; ===========================================================================
;;; Copyright (C) 2018 Sahil Kang <[email protected]>
;;;
;;; This file is part of cl-snake.
;;;
;;; cl-snake 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.
;;;
;;; cl-snake 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 cl-snake. If not, see <http://www.gnu.org/licenses/>.
;;; ===========================================================================
(asdf:defsystem #:cl-snake
:description "Play snake in the terminal."
:version "1.0.0"
:author "Sahil Kang <[email protected]>"
:license "GPLv3"
:depends-on (#:cl-charms)
:entry-point "main:entry-point"
:build-pathname "cl-snake"
:components
((:module
"src"
:serial t
:components
((:file "package")
(:file "cartesian")
(:file "snake")
(:file "board")
(:file "state")
(:file "draw")
(:file "main")))))
#+sb-core-compression
(defmethod asdf:perform ((op asdf:image-op) (sys asdf:system))
(uiop:dump-image (asdf:output-file op sys) :executable t :compression 9))