SOF/sof.asd
FroggyGreen 207de345f7 Window events, math, and asdf
Window resize events are now sent from the renderer to lisp.
On the lisp side, some math code has been written, but not yet
integrated into the project.
2024-05-13 19:05:28 -05:00

23 lines
443 B
Common Lisp

(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")))))))