mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
db7f8a461e
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.
12 lines
351 B
Text
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
|