quakeforge/libs/scene/Makemodule.am
Bill Currie db7f8a461e [ecs] Move ECS core into its own library
While the libraries are probably getting a little out of hand, the
separation into its own directory is probably a good thing as an ECS
should not be tied to scenes. This should make the ECS more generally
useful.
2022-10-26 17:24:03 +09:00

18 lines
477 B
Text

include libs/scene/test/Makemodule.am
scene_deps=\
libs/models/libQFmodels.la \
libs/ecs/libQFecs.la \
libs/util/libQFutil.la
lib_LTLIBRARIES += libs/scene/libQFscene.la
libs_scene_libQFscene_la_LDFLAGS= $(lib_ldflags)
libs_scene_libQFscene_la_LIBADD= $(scene_deps)
libs_scene_libQFscene_la_DEPENDENCIES= $(scene_deps)
libs_scene_libQFscene_la_SOURCES= \
libs/scene/camera.c \
libs/scene/entity.c \
libs/scene/light.c \
libs/scene/scene.c \
libs/scene/transform.c