mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
5ad7c0fbd6
It holds the data for a basic 3d camera (transform, fov, near and far clip). Not used yet as there is much work to be done in cleaning up the client code.
14 lines
401 B
Text
14 lines
401 B
Text
include libs/scene/test/Makemodule.am
|
|
|
|
scene_deps=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/hierarchy.c \
|
|
libs/scene/scene.c \
|
|
libs/scene/transform.c
|