2024-05-13 20:05:28 -04:00
|
|
|
(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")
|
|
|
|
(:module "math"
|
|
|
|
:components
|
|
|
|
((:file "vec")
|
2024-05-16 00:04:51 -04:00
|
|
|
(:file "quat")
|
|
|
|
(:file "mat")))
|
|
|
|
(:file "main")))))
|