mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-12-12 21:52:32 +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.
18 lines
477 B
Text
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
|