2023-06-26 21:49:34 -05:00
|
|
|
(defsystem "flora-search-aurora"
|
2023-07-13 23:52:04 -05:00
|
|
|
:depends-on ("alexandria" "assoc-utils" "cl-charms" "metacopy" "str")
|
2023-06-26 21:49:34 -05:00
|
|
|
:build-operation "program-op"
|
|
|
|
:build-pathname "flora-search-aurora"
|
|
|
|
:entry-point "flora-search-aurora:main"
|
2023-06-28 10:15:23 -05:00
|
|
|
:components ((:file "packages")
|
|
|
|
(:file "util")
|
2023-06-26 21:49:34 -05:00
|
|
|
(:file "display")
|
|
|
|
(:file "input")
|
2023-07-02 12:05:29 -05:00
|
|
|
(:file "menu")
|
2023-07-14 08:50:02 -05:00
|
|
|
(:file "settings")
|
2023-06-27 21:36:13 -05:00
|
|
|
(:file "inventory")
|
2023-06-30 13:52:50 -05:00
|
|
|
(:file "intermission")
|
2023-06-26 21:49:34 -05:00
|
|
|
(:file "overworld.util")
|
|
|
|
(:file "overworld")
|
|
|
|
(:file "dialogue")
|
|
|
|
(:file "engine")
|
2023-06-30 13:52:50 -05:00
|
|
|
(:file "res/clocks")
|
2023-07-14 00:49:34 -05:00
|
|
|
(:file "res/maps/base.tmx")
|
2023-06-26 21:49:34 -05:00
|
|
|
(:file "res/maps/casino.tmx")
|
2023-07-15 01:50:46 -05:00
|
|
|
(:file "res/maps/factory.tmx")
|
2023-07-15 01:04:58 -05:00
|
|
|
(:file "res/maps/flashback-base.tmx")
|
2023-07-03 22:12:42 -05:00
|
|
|
(:file "res/maps/flashback-casino.tmx")
|
2023-07-13 22:55:16 -05:00
|
|
|
(:file "res/maps/flashback-school.tmx")
|
2023-07-14 00:49:34 -05:00
|
|
|
(:file "res/maps/outdoors.tmx")
|
2023-07-13 22:55:16 -05:00
|
|
|
(:file "flora-search-aurora")))
|