First attempt at cutting down the amount of recompiles for the tools, but maybe I just have meson only build the tool when I run it?

This commit is contained in:
Zed A. Shaw 2026-03-04 00:09:25 -05:00
parent 56b4580466
commit 6710469ee1
2 changed files with 55 additions and 1 deletions

View file

@ -66,3 +66,57 @@ sources = files(
# root
'dbc.cpp',
)
arena_sources = files(
# ai
'ai/ai.cpp',
'ai/ai_debug.cpp',
'ai/goap.cpp',
# combat
'combat/battle.cpp',
'combat/combat.cpp',
# boss fight mini game
'boss/fight.cpp',
'boss/system.cpp',
'boss/ui.cpp',
# gui
'gui/backend.cpp',
'gui/combat_ui.cpp',
'gui/debug_ui.cpp',
'gui/event_router.cpp',
'gui/guecstra.cpp',
# graphics
'graphics/animation.cpp',
'graphics/camera.cpp',
'graphics/easing.cpp',
'graphics/palette.cpp',
'graphics/scene.cpp',
'graphics/shaders.cpp',
'graphics/textures.cpp',
'graphics/lights.cpp',
# algos
'algos/matrix.cpp',
'algos/maze.cpp',
'algos/spatialmap.cpp',
'algos/rand.cpp',
'algos/pathing.cpp',
# game
'game/worldbuilder.cpp',
'game/map.cpp',
'game/level.cpp',
'game/inventory.cpp',
'game/sound.cpp',
'game/systems.cpp',
'game/components.cpp',
'game/config.cpp',
'game/rituals.cpp',
# root
'dbc.cpp',
)