e8fc5248fa
Added osgcamera example that uses osg::GraphicsContext to create the required window for rendering too, will eventually use osg::CameraNode to replace usage of osgUtil::SceneView.
15 lines
286 B
Plaintext
15 lines
286 B
Plaintext
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
osgcamera.cpp\
|
|
|
|
LIBS += -lProducer -losgDB --losgUtil -losg $(GL_LIBS) $(X_LIBS) $(OTHER_LIBS)
|
|
|
|
EXEC = osgcamera
|
|
|
|
INC += $(PRODUCER_INCLUDE_DIR) $(X_INC)
|
|
LDFLAGS += $(PRODUCER_LIB_DIR)
|
|
|
|
include $(TOPDIR)/Make/makerules
|