23 lines
443 B
Plaintext
23 lines
443 B
Plaintext
|
(in-package #:cl-user)
|
||
|
|
||
|
(defpackage #:sof-asd
|
||
|
(:use :cl :asdf))
|
||
|
|
||
|
(in-package :sof-asd)
|
||
|
|
||
|
(defsystem "sof"
|
||
|
:version "0.0.1"
|
||
|
:description "A 3D roguelike/tabletop inspired adventure game."
|
||
|
:author "Frosch"
|
||
|
:license "GPLv3"
|
||
|
:depends-on (#:cffi-libffi)
|
||
|
:components
|
||
|
((:module "src"
|
||
|
:components
|
||
|
((:file "package")
|
||
|
(:file "main")
|
||
|
(:module "math"
|
||
|
:components
|
||
|
((:file "vec")
|
||
|
(:file "quat")))))))
|