blob: fa14e56e9803886b1da01f3352e95aac53550863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;;;; the-price-of-a-cup-of-coffee.asd
(asdf:defsystem #:the-price-of-a-cup-of-coffee
:description "Just a cold day on a busy street."
:defsystem-depends-on (:deploy)
:build-operation "deploy-op"
:build-pathname "price-of-coffee"
:entry-point "pocc::start"
:author "<thegoofist@protonmail.com>"
:license "GPL3"
:version "0.0.1"
:serial t
:depends-on (#:animise #:sdl2 #:sdl2-image #:harmony-simple #:trivia) ; #:swank)
:components ((:file "package")
(:file "macros")
(:file "assets")
(:file "the-price-of-a-cup-of-coffee")))
|