quakeforge/libs/ecs/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

12 lines
351 B
Text

include libs/ecs/test/Makemodule.am
ecs_deps=libs/models/libQFmodels.la libs/util/libQFutil.la
lib_LTLIBRARIES += libs/ecs/libQFecs.la
libs_ecs_libQFecs_la_LDFLAGS= $(lib_ldflags)
libs_ecs_libQFecs_la_LIBADD= $(ecs_deps)
libs_ecs_libQFecs_la_DEPENDENCIES= $(ecs_deps)
libs_ecs_libQFecs_la_SOURCES= \
libs/ecs/component.c \
libs/ecs/hierarchy.c