keyboard and mouse events. Added osgGA::EventQueue class to support a thread safe event queue and adaption of keyboard and mouse events. Removed osgProducer::EventAdapter as GUIEventAdapter replaces it. Adapted osgProducer and examples to work with the new changes to osgGA.
22 lines
522 B
Makefile
22 lines
522 B
Makefile
TOPDIR = ../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
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
|