Files
YourWishes 1bd73d69fe Clamp keyframe interpolation to last value, add main menu scene/UI, battle HUD, and expanded test coverage
- keyframeGetValue now returns the last keyframe's value for times at or
  beyond it, fixes a missing util/math.h include, and asserts keyframes are
  sorted by time; adds test/animation/test_keyframe.c
- Adds mainmenu scene/UI and a battle HUD UI frame
- Adds save autosave-related fields and battle scene tweaks
- Adds headless test coverage for cutscenes, entities, and map areas
2026-08-06 12:58:07 -05:00

20 lines
497 B
CMake

# Copyright (c) 2026 Dominic Masters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
include(dusktest)
# Tests
dusktest(test_entity.c)
target_sources(test_entity PRIVATE entitytestfixture.c)
dusktest(test_npc.c)
target_sources(test_npc PRIVATE entitytestfixture.c)
dusktest(test_entityinteract.c)
target_sources(test_entityinteract PRIVATE entitytestfixture.c)
dusktest(test_entityitem.c)
target_sources(test_entityitem PRIVATE entitytestfixture.c)