blob: 59de235c0f4b685d6295ed62db0a73bcbb9b61e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;;; 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."
:author "<thegoofist@protonmail.com>"
:license "GPL3"
:version "0.0.1"
:serial t
:depends-on (#:animise #:sdl2 #:sdl2-image #:harmony)
:components ((:file "package")
(:file "assets")
(:file "the-price-of-a-cup-of-coffee")))
|