mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
7c53a68ad7
While culling is very much part of rendering, it's more scene related than renderer related. Fixes the transform test failing to link.
19 lines
499 B
Text
19 lines
499 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/efrag.c \
|
|
libs/scene/entity.c \
|
|
libs/scene/light.c \
|
|
libs/scene/scene.c \
|
|
libs/scene/transform.c
|