mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 19:08:55 -04:00
composite build
This commit is contained in:
parent
601b0d45c8
commit
1b37ee8b9c
@ -13,32 +13,58 @@
|
|||||||
gsgmisc gsgbase gobj display \
|
gsgmisc gsgbase gobj display \
|
||||||
putil linmath mathutil pnmimage windisplay
|
putil linmath mathutil pnmimage windisplay
|
||||||
|
|
||||||
|
#define COMBINED_SOURCES $[TARGET]_composite1.cxx $[TARGET]_composite2.cxx
|
||||||
|
|
||||||
#define SOURCES \
|
#define SOURCES \
|
||||||
config_tinydisplay.cxx config_tinydisplay.h \
|
config_tinydisplay.h \
|
||||||
tinyGeomMunger.I tinyGeomMunger.cxx tinyGeomMunger.h \
|
tinyGeomMunger.I tinyGeomMunger.h \
|
||||||
tinySDLGraphicsPipe.I tinySDLGraphicsPipe.cxx tinySDLGraphicsPipe.h \
|
tinySDLGraphicsPipe.I tinySDLGraphicsPipe.h \
|
||||||
tinySDLGraphicsWindow.h tinySDLGraphicsWindow.I tinySDLGraphicsWindow.cxx \
|
tinySDLGraphicsWindow.h tinySDLGraphicsWindow.I \
|
||||||
tinyGraphicsBuffer.h tinyGraphicsBuffer.I tinyGraphicsBuffer.cxx \
|
tinyGraphicsBuffer.h tinyGraphicsBuffer.I \
|
||||||
tinyGraphicsStateGuardian.h tinyGraphicsStateGuardian.I \
|
tinyGraphicsStateGuardian.h tinyGraphicsStateGuardian.I \
|
||||||
tinyGraphicsStateGuardian.cxx \
|
tinyTextureContext.I tinyTextureContext.h \
|
||||||
tinyTextureContext.I tinyTextureContext.cxx tinyTextureContext.h \
|
tinyWinGraphicsPipe.I tinyWinGraphicsPipe.h \
|
||||||
tinyWinGraphicsPipe.I tinyWinGraphicsPipe.cxx tinyWinGraphicsPipe.h \
|
tinyWinGraphicsWindow.h tinyWinGraphicsWindow.I \
|
||||||
tinyWinGraphicsWindow.h tinyWinGraphicsWindow.I tinyWinGraphicsWindow.cxx \
|
tinyXGraphicsPipe.I tinyXGraphicsPipe.h \
|
||||||
tinyXGraphicsPipe.I tinyXGraphicsPipe.cxx tinyXGraphicsPipe.h \
|
tinyXGraphicsWindow.h tinyXGraphicsWindow.I \
|
||||||
tinyXGraphicsWindow.h tinyXGraphicsWindow.I tinyXGraphicsWindow.cxx \
|
tinyOsxGraphicsPipe.I tinyOsxGraphicsPipe.h \
|
||||||
tinyOsxGraphicsPipe.I tinyOsxGraphicsPipe.cxx tinyOsxGraphicsPipe.h \
|
|
||||||
tinyOsxGraphicsWindow.h tinyOsxGraphicsWindow.I \
|
tinyOsxGraphicsWindow.h tinyOsxGraphicsWindow.I \
|
||||||
$[if $[IS_OSX],tinyOsxGraphicsWindow.mm,] \
|
$[if $[IS_OSX],tinyOsxGraphicsWindow.mm,] \
|
||||||
clip.cxx error.cxx \
|
msghandling.h \
|
||||||
image_util.cxx init.cxx light.cxx \
|
zbuffer.h zfeatures.h zgl.h \
|
||||||
memory.cxx msghandling.cxx msghandling.h \
|
zline.h zmath.h \
|
||||||
specbuf.cxx \
|
|
||||||
texture.cxx vertex.cxx \
|
|
||||||
zbuffer.cxx zbuffer.h zdither.cxx zfeatures.h zgl.h zline.cxx \
|
|
||||||
zline.h zmath.cxx zmath.h \
|
|
||||||
ztriangle.cxx ztriangle.h ztriangle_two.h \
|
ztriangle.cxx ztriangle.h ztriangle_two.h \
|
||||||
ztriangle_code.h ztriangle_table.h \
|
ztriangle_code.h ztriangle_table.h \
|
||||||
store_pixel.cxx store_pixel.h store_pixel_code.h store_pixel_table.h
|
store_pixel.h store_pixel_code.h store_pixel_table.h
|
||||||
|
|
||||||
|
#define INCLUDED_SOURCES \
|
||||||
|
clip.cxx \
|
||||||
|
config_tinydisplay.cxx \
|
||||||
|
error.cxx \
|
||||||
|
image_util.cxx \
|
||||||
|
init.cxx \
|
||||||
|
td_light.cxx \
|
||||||
|
memory.cxx \
|
||||||
|
msghandling.cxx \
|
||||||
|
specbuf.cxx \
|
||||||
|
store_pixel.cxx \
|
||||||
|
td_texture.cxx \
|
||||||
|
tinyGeomMunger.cxx \
|
||||||
|
tinyGraphicsBuffer.cxx \
|
||||||
|
tinyGraphicsStateGuardian.cxx \
|
||||||
|
tinyOsxGraphicsPipe.cxx \
|
||||||
|
tinySDLGraphicsPipe.cxx \
|
||||||
|
tinySDLGraphicsWindow.cxx \
|
||||||
|
tinyTextureContext.cxx \
|
||||||
|
tinyWinGraphicsPipe.cxx \
|
||||||
|
tinyWinGraphicsWindow.cxx \
|
||||||
|
tinyXGraphicsPipe.cxx \
|
||||||
|
tinyXGraphicsWindow.cxx \
|
||||||
|
vertex.cxx \
|
||||||
|
zbuffer.cxx \
|
||||||
|
zdither.cxx \
|
||||||
|
zline.cxx \
|
||||||
|
zmath.cxx
|
||||||
|
|
||||||
#end lib_target
|
#end lib_target
|
||||||
|
|
||||||
|
13
panda/src/tinydisplay/tinydisplay_composite1.cxx
Executable file
13
panda/src/tinydisplay/tinydisplay_composite1.cxx
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#include "clip.cxx"
|
||||||
|
#include "config_tinydisplay.cxx"
|
||||||
|
#include "error.cxx"
|
||||||
|
#include "image_util.cxx"
|
||||||
|
#include "init.cxx"
|
||||||
|
#include "td_light.cxx"
|
||||||
|
#include "memory.cxx"
|
||||||
|
#include "msghandling.cxx"
|
||||||
|
#include "specbuf.cxx"
|
||||||
|
#include "store_pixel.cxx"
|
||||||
|
#include "td_texture.cxx"
|
||||||
|
#include "tinyGeomMunger.cxx"
|
||||||
|
#include "tinyGraphicsBuffer.cxx"
|
14
panda/src/tinydisplay/tinydisplay_composite2.cxx
Executable file
14
panda/src/tinydisplay/tinydisplay_composite2.cxx
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#include "tinyGraphicsStateGuardian.cxx"
|
||||||
|
#include "tinyOsxGraphicsPipe.cxx"
|
||||||
|
#include "tinySDLGraphicsPipe.cxx"
|
||||||
|
#include "tinySDLGraphicsWindow.cxx"
|
||||||
|
#include "tinyTextureContext.cxx"
|
||||||
|
#include "tinyWinGraphicsPipe.cxx"
|
||||||
|
#include "tinyWinGraphicsWindow.cxx"
|
||||||
|
#include "tinyXGraphicsPipe.cxx"
|
||||||
|
#include "tinyXGraphicsWindow.cxx"
|
||||||
|
#include "vertex.cxx"
|
||||||
|
#include "zbuffer.cxx"
|
||||||
|
#include "zdither.cxx"
|
||||||
|
#include "zline.cxx"
|
||||||
|
#include "zmath.cxx"
|
Loading…
x
Reference in New Issue
Block a user