14 lines
411 B
Common Lisp
14 lines
411 B
Common Lisp
#+sbcl
|
|
(eval-when (:compile-toplevel :load-toplevel :execute)
|
|
;; raylib hands back floats that trip SBCL's FP traps otherwise.
|
|
(sb-int:set-floating-point-modes :traps nil))
|
|
|
|
(asdf:defsystem #:siam-farmer
|
|
:description "Tile-based farming game"
|
|
:author "Joseph Ferano"
|
|
:depends-on (#:cl-raylib #:livesupport)
|
|
:serial t
|
|
:pathname "src"
|
|
:components ((:file "engine")
|
|
(:file "game")))
|