302c58fc93
Added options into osgprerender for controlling how to do the pre rendering i.e. --fbo, --pbuffer, --fb --window, and also added the option for controlling the window size with --width and --height.
23 lines
541 B
Makefile
23 lines
541 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
EventAdapter.cpp\
|
|
KeyboardMouseCallback.cpp\
|
|
GraphicsContextImplementation.cpp\
|
|
OsgCameraGroup.cpp\
|
|
OsgSceneHandler.cpp\
|
|
ViewerEventHandler.cpp\
|
|
Viewer.cpp\
|
|
Version.cpp\
|
|
|
|
LIBS += -lProducer $(GL_LIBS) -losgText -losgGA -losgUtil -losgDB -losg $(OTHER_LIBS)
|
|
DEF += -DOSGPRODUCER_LIBRARY
|
|
|
|
TARGET_BASENAME = osgProducer
|
|
LIB = $(LIB_PREFIX)$(TARGET_BASENAME).$(LIB_EXT)
|
|
|
|
INC += $(X_INC)
|
|
|
|
include $(TOPDIR)/Make/makerules
|